From ea161b3be688780e8eaefa564b40e794a225f2ac Mon Sep 17 00:00:00 2001 From: thunder2 Date: Fri, 21 Jun 2013 12:25:27 +0000 Subject: [PATCH] Added missing break in NotifyQt::notifyListChange. The signal "groupsChanged" was emitted when the event "NOTIFY_LIST_CHAT_LOBBY_LIST" occurs. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6452 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/notifyqt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/retroshare-gui/src/gui/notifyqt.cpp b/retroshare-gui/src/gui/notifyqt.cpp index 17196e83d..bca53f236 100644 --- a/retroshare-gui/src/gui/notifyqt.cpp +++ b/retroshare-gui/src/gui/notifyqt.cpp @@ -670,6 +670,7 @@ void NotifyQt::notifyListChange(int list, int type) std::cerr << "received notify chat lobby list" << std::endl; #endif emit lobbyListChanged(); + break; case NOTIFY_LIST_GROUPLIST: #ifdef NOTIFY_DEBUG