aboutsummaryrefslogtreecommitdiff
path: root/examples/GuiClient
diff options
context:
space:
mode:
Diffstat (limited to 'examples/GuiClient')
-rw-r--r--examples/GuiClient/customListView.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/GuiClient/customListView.cpp b/examples/GuiClient/customListView.cpp
index e1a99a00..825402d3 100644
--- a/examples/GuiClient/customListView.cpp
+++ b/examples/GuiClient/customListView.cpp
@@ -42,6 +42,10 @@ customListView::customListView(QWidget* parent):QListView(parent), m_chat("Chat"
check = connect(&m_chat, SIGNAL(triggered()), this,
SLOT(showChatDialog_helper()));
Q_ASSERT(check);
+
+ check = connect(&m_profile, SIGNAL(triggered()), this,
+ SLOT(showProfile_helper()));
+ Q_ASSERT(check);
}
bool customListView::event(QEvent* e)