summaryrefslogtreecommitdiffstats
path: root/examples/rot13/rot13.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rot13/rot13.cpp')
-rw-r--r--examples/rot13/rot13.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/rot13/rot13.cpp b/examples/rot13/rot13.cpp
index 967c72de..e44d7b87 100644
--- a/examples/rot13/rot13.cpp
+++ b/examples/rot13/rot13.cpp
@@ -21,14 +21,14 @@ Rot13::Rot13()
connect( left, SIGNAL(textChanged()), this, SLOT(changeRight()) );
connect( right, SIGNAL(textChanged()), this, SLOT(changeLeft()) );
- TQPushButton * tquit = new TQPushButton( "&Quit", this );
- tquit->setFocusPolicy( NoFocus );
- connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+ TQPushButton * quit = new TQPushButton( "&Quit", this );
+ quit->setFocusPolicy( NoFocus );
+ connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
TQGridLayout * l = new TQGridLayout( this, 2, 2, 5 );
l->addWidget( left, 0, 0 );
l->addWidget( right, 0, 1 );
- l->addWidget( tquit, 1, 1, AlignRight );
+ l->addWidget( quit, 1, 1, AlignRight );
left->setFocus();
}