Fixed annoying bug where the nicklist wouldn't be shown sometimes because of an incon...
[quassel.git] / src / client / nickmodel.h
index 8a65e9d..938543d 100644 (file)
@@ -79,6 +79,13 @@ class FilteredNickModel : public QSortFilterProxyModel {
 
   public:
     FilteredNickModel(QObject *parent = 0);
+    virtual ~FilteredNickModel();
+
+    virtual void setSourceModel(QAbstractItemModel *model);
+
+  private slots:
+    void sourceRowsInserted(const QModelIndex &, int, int);
+    void sourceRowsRemoved(const QModelIndex &, int, int);
 
   protected:
     virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;