diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-05-07 09:19:08 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-05-07 09:19:08 (GMT) |
commit | 2dd59db4ae815e2e6e487e4c0078d3dc495e95f0 (patch) | |
tree | ccc8110e80071e743f5c536e4910886d2feef345 /Swift | |
parent | 5409f27bbc3b32a65b2feed3259b1cc15da888a3 (diff) | |
download | swift-2dd59db4ae815e2e6e487e4c0078d3dc495e95f0.zip swift-2dd59db4ae815e2e6e487e4c0078d3dc495e95f0.tar.bz2 |
Sort the roster
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/QtUI/Roster/RosterModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/Roster/RosterModel.cpp b/Swift/QtUI/Roster/RosterModel.cpp index 408cc3e..d5b4002 100644 --- a/Swift/QtUI/Roster/RosterModel.cpp +++ b/Swift/QtUI/Roster/RosterModel.cpp @@ -182,7 +182,7 @@ int RosterModel::rowCount(const QModelIndex& parent) const { Q_ASSERT(item); GroupRosterItem* group = dynamic_cast<GroupRosterItem*>(item); int count = group ? group->getDisplayedChildren().size() : 0; - qDebug() << "rowCount = " << count << " where parent.isValid() == " << parent.isValid() << ", group == " << (group ? P2QSTRING(group->getDisplayName()) : "*contact*"); +// qDebug() << "rowCount = " << count << " where parent.isValid() == " << parent.isValid() << ", group == " << (group ? P2QSTRING(group->getDisplayName()) : "*contact*"); return count; } |