summaryrefslogtreecommitdiffstats
path: root/tutorial/t5/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/t5/main.cpp')
-rw-r--r--tutorial/t5/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tutorial/t5/main.cpp b/tutorial/t5/main.cpp
index 64ee0436..44dfcc03 100644
--- a/tutorial/t5/main.cpp
+++ b/tutorial/t5/main.cpp
@@ -22,10 +22,10 @@ public:
MyWidget::MyWidget( TQWidget *parent, const char *name )
: TQVBox( parent, name )
{
- TQPushButton *tquit = new TQPushButton( "Quit", this, "tquit" );
- tquit->setFont( TQFont( "Times", 18, TQFont::Bold ) );
+ TQPushButton *quit = new TQPushButton( "Quit", this, "quit" );
+ quit->setFont( TQFont( "Times", 18, TQFont::Bold ) );
- connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
TQLCDNumber *lcd = new TQLCDNumber( 2, this, "lcd" );