summaryrefslogtreecommitdiffstats
path: root/examples/network
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2010-07-13 16:53:27 +1000
committerAaron McCarthy <aaron.mccarthy@nokia.com>2010-07-19 10:32:31 +1000
commitd191c5bd1d0e3963dc8a4f3ffdba80af0800ec22 (patch)
treec869dc07f61c5158bb2644605187efd81b4c29ae /examples/network
parentc79ad5443835a5be9057de5e1553786dde46f65d (diff)
Fix build on Symbian.
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/network-chat/chatdialog.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/network/network-chat/chatdialog.cpp b/examples/network/network-chat/chatdialog.cpp
index 14fabaa181..2bab535ccf 100644
--- a/examples/network/network-chat/chatdialog.cpp
+++ b/examples/network/network-chat/chatdialog.cpp
@@ -53,9 +53,6 @@ ChatDialog::ChatDialog(QWidget *parent)
listWidget->setFocusPolicy(Qt::NoFocus);
connect(lineEdit, SIGNAL(returnPressed()), this, SLOT(returnPressed()));
-#ifdef Q_OS_SYMBIAN
- connect(sendButton, SIGNAL(clicked()), this, SLOT(returnPressed()));
-#endif
connect(lineEdit, SIGNAL(returnPressed()), this, SLOT(returnPressed()));
connect(&client, SIGNAL(newMessage(QString,QString)),
this, SLOT(appendMessage(QString,QString)));