diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-04-04 11:55:11 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-04-04 11:55:11 (GMT) |
commit | f1675c651a08c294447389176262ab890cc6e7b5 (patch) | |
tree | 5371b7db58ac31b22b747822b224db3565442084 /Swift/QtUI/ChatList | |
parent | 03a5a0a4a6c7504acead164dc8334c36da86a888 (diff) | |
download | swift-f1675c651a08c294447389176262ab890cc6e7b5.zip swift-f1675c651a08c294447389176262ab890cc6e7b5.tar.bz2 |
Add 'remove' context menu item for rosters (not implemented).
Diffstat (limited to 'Swift/QtUI/ChatList')
-rw-r--r-- | Swift/QtUI/ChatList/ChatListMUCItem.cpp | 1 | ||||
-rw-r--r-- | Swift/QtUI/ChatList/ChatListModel.cpp | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/Swift/QtUI/ChatList/ChatListMUCItem.cpp b/Swift/QtUI/ChatList/ChatListMUCItem.cpp index 428cf4b..3a32495 100644 --- a/Swift/QtUI/ChatList/ChatListMUCItem.cpp +++ b/Swift/QtUI/ChatList/ChatListMUCItem.cpp @@ -12,7 +12,6 @@ boost::shared_ptr<MUCBookmark> ChatListMUCItem::getBookmark() { } QVariant ChatListMUCItem::data(int role) { - printf("Getting role %d\n", role); switch (role) { case Qt::DisplayRole: return P2QSTRING(bookmark_->getName()); /*case Qt::TextColorRole: return textColor_; diff --git a/Swift/QtUI/ChatList/ChatListModel.cpp b/Swift/QtUI/ChatList/ChatListModel.cpp index 1a1bb80..827650c 100644 --- a/Swift/QtUI/ChatList/ChatListModel.cpp +++ b/Swift/QtUI/ChatList/ChatListModel.cpp @@ -59,15 +59,12 @@ QModelIndex ChatListModel::parent(const QModelIndex& index) const { int ChatListModel::rowCount(const QModelIndex& parentIndex) const { ChatListGroupItem* parent = NULL; - printf("Counting\n"); if (parentIndex.isValid()) { - printf("Valid index\n"); parent = dynamic_cast<ChatListGroupItem*>(static_cast<ChatListItem*>(parentIndex.internalPointer())); } else { parent = root_; } int count = (parent ? parent->rowCount() : 0); - printf("Count returned as %d, muc count is %d\n", count, mucBookmarks_->rowCount()); return count; } |