Cleaned up window titles of widgets etc. Bu-bye "Forms", nice to know ya.
[quassel.git] / src / uisupport / nickview.cpp
index 9894ba8..5db46c8 100644 (file)
@@ -5,7 +5,7 @@
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
  *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   (at your option) version 3.                                           *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
@@ -22,6 +22,7 @@
 #include "nickmodel.h"
 
 #include <QHeaderView>
+#include <QDebug>
 
 NickView::NickView(QWidget *parent) : QTreeView(parent) {
   setGeometry(0, 0, 30, 30);
@@ -47,3 +48,9 @@ void NickView::setModel(NickModel *model) {
   filteredModel->setSourceModel(model);
   expandAll();
 }
+
+void NickView::rowsInserted(const QModelIndex &index, int start, int end) {
+  QTreeView::rowsInserted(index, start, end);
+  expandAll();  // FIXME We need to do this more intelligently. Maybe a pimped TreeView?
+}
+