X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Ftreemodel.h;h=6f2575c08f86e637fb626fb1977f29784eb2f868;hp=2b77c5b274bfba66dcbd77bd9920c9db321baee8;hb=4604f6d6f0daa7980e36753b2a417ab709d9ce6a;hpb=bf9530ddf0b227b6737e9cc672d40a703516c7ea diff --git a/src/client/treemodel.h b/src/client/treemodel.h index 2b77c5b2..6f2575c0 100644 --- a/src/client/treemodel.h +++ b/src/client/treemodel.h @@ -74,6 +74,8 @@ public: int row() const; AbstractTreeItem *parent() const; + void dumpChildList(); + signals: void dataChanged(int column = -1); @@ -186,8 +188,12 @@ private: }; ChildStatus _childStatus; int _aboutToRemoveOrInsert; - // QLinkedList _childStatus; +private slots: + void debug_rowsAboutToBeInserted(const QModelIndex &parent, int start, int end); + void debug_rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end); + void debug_rowsInserted(const QModelIndex &parent, int start, int end); + void debug_rowsRemoved(const QModelIndex &parent, int start, int end); }; #endif