From 86def5bbdf3b0b8e1524be643d5f5d3c4ba0572a Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 24 Feb 2013 22:55:58 +0000 Subject: [PATCH] fixed stupid bug in my previous commit git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6143 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/ChatLobbyWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.cpp b/retroshare-gui/src/gui/ChatLobbyWidget.cpp index 9201869cb..fb0dd233e 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.cpp +++ b/retroshare-gui/src/gui/ChatLobbyWidget.cpp @@ -419,6 +419,8 @@ QTreeWidgetItem *ChatLobbyWidget::getTreeWidgetItem(ChatLobbyId id) if (itemLoop->type() == TYPE_LOBBY && itemLoop->data(COLUMN_DATA, ROLE_ID).toULongLong() == id) return itemLoop ; + + ++childIndex ; } } return NULL ;