summaryrefslogtreecommitdiffstats
path: root/examples/network/httpd/httpd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network/httpd/httpd.cpp')
-rw-r--r--examples/network/httpd/httpd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/httpd/httpd.cpp b/examples/network/httpd/httpd.cpp
index fd42891b..f96fc455 100644
--- a/examples/network/httpd/httpd.cpp
+++ b/examples/network/httpd/httpd.cpp
@@ -98,12 +98,12 @@ public:
TQLabel *lb = new TQLabel( itext, this );
lb->setAlignment( AlignHCenter );
infoText = new TQTextView( this );
- TQPushButton *tquit = new TQPushButton( "tquit" , this );
+ TQPushButton *quit = new TQPushButton( "quit" , this );
connect( httpd, SIGNAL(newConnect()), SLOT(newConnect()) );
connect( httpd, SIGNAL(endConnect()), SLOT(endConnect()) );
connect( httpd, SIGNAL(wroteToClient()), SLOT(wroteToClient()) );
- connect( tquit, SIGNAL(pressed()), qApp, SLOT(tquit()) );
+ connect( quit, SIGNAL(pressed()), qApp, SLOT(quit()) );
}
~HttpInfo()