diff options
Diffstat (limited to 'Swift/Controllers/Roster/TableRoster.cpp')
-rw-r--r-- | Swift/Controllers/Roster/TableRoster.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/Controllers/Roster/TableRoster.cpp b/Swift/Controllers/Roster/TableRoster.cpp index 54f2484..171e8ed 100644 --- a/Swift/Controllers/Roster/TableRoster.cpp +++ b/Swift/Controllers/Roster/TableRoster.cpp @@ -90,7 +90,7 @@ size_t TableRoster::getNumberOfRowsInSection(size_t section) const { return sections[section].items.size(); } -TableRoster::Item TableRoster::getItem(const Index& index) const { +const TableRoster::Item& TableRoster::getItem(const Index& index) const { return sections[index.section].items[index.row]; } @@ -108,7 +108,7 @@ void TableRoster::handleUpdateTimerTick() { foreach(RosterItem* groupChildItem, groupItem->getDisplayedChildren()) { if (ContactRosterItem* contact = boost::polymorphic_downcast<ContactRosterItem*>(groupChildItem)) { //std::cerr << " - " << contact->getDisplayJID() << std::endl; - section.items.push_back(Item(contact->getDisplayName(), contact->getStatusText(), contact->getDisplayJID(), contact->getStatusShow())); + section.items.push_back(Item(contact->getDisplayName(), contact->getStatusText(), contact->getDisplayJID(), contact->getStatusShow(), contact->getAvatarPath())); } } newSections.push_back(section); |