diff options
author | senator <senator> | 2008-03-18 15:13:56 +0000 |
---|---|---|
committer | senator <senator> | 2008-03-18 15:13:56 +0000 |
commit | 7e744c07d8867ad8687f874c30f3f651bc53fa89 (patch) | |
tree | 9630c4d9bd9172cfd2927b3ba6a379a6df2c1d43 | |
parent | c342f67900ef8828299cbed9965d5a860f139b7c (diff) |
removed a couple of printfs
-rw-r--r-- | client/builder.cc | 2 | ||||
-rw-r--r-- | client/sendrecieve.cc | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/client/builder.cc b/client/builder.cc index 426102b..b30f225 100644 --- a/client/builder.cc +++ b/client/builder.cc @@ -73,7 +73,7 @@ void Builder::recurser(QDomNode xml_node, QWidget *parent) connect(pushbutton, SIGNAL(act_commit()), this, SLOT(commit())); connect(pushbutton, SIGNAL(act_reset()), this, SLOT(reset())); connect(pushbutton, SIGNAL(act_cancel()), this, SLOT(cancel())); - connect(pushbutton, SIGNAL(act_continue()), this, SLOT(cont("fisk"))); + //connect(pushbutton, SIGNAL(act_continue()), this, SLOT(cont("fisk"))); widget = pushbutton; } else if(xml_elem.tagName() == "textedit") { diff --git a/client/sendrecieve.cc b/client/sendrecieve.cc index 25a50d0..8b4732b 100644 --- a/client/sendrecieve.cc +++ b/client/sendrecieve.cc @@ -124,7 +124,6 @@ void SendRecieve::myDisconnected() // slot void SendRecieve::myError(QAbstractSocket::SocketError socketError) // slot { tcpConnected = TCP_ERROR; - printf("socket_error: %d\n", socketError); switch (socketError) { case 0 : QMessageBox::information(NULL, tr("Pracro"), tr("Couldn't connect to server.\nPlease contact a system administrator to resolve the problem.")); @@ -134,8 +133,8 @@ void SendRecieve::myError(QAbstractSocket::SocketError socketError) // slot QMessageBox::information(NULL, tr("Pracro"), tr("Couldn't connect to server.\nPlease contact a system administrator to resolve the problem.")); exit(1); break; - default : - printf("default\n"); + default: + ; } } |