summaryrefslogtreecommitdiffstats
path: root/tutorial/t7/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/t7/main.cpp')
-rw-r--r--tutorial/t7/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tutorial/t7/main.cpp b/tutorial/t7/main.cpp
index 246797707..c2221a6d1 100644
--- a/tutorial/t7/main.cpp
+++ b/tutorial/t7/main.cpp
@@ -24,10 +24,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()) );
TQGrid *grid = new TQGrid( 4, this );