summaryrefslogtreecommitdiffstats
path: root/examples/regexptester/regexptester.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/regexptester/regexptester.cpp')
-rw-r--r--examples/regexptester/regexptester.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/regexptester/regexptester.cpp b/examples/regexptester/regexptester.cpp
index 326c0204..91e544de 100644
--- a/examples/regexptester/regexptester.cpp
+++ b/examples/regexptester/regexptester.cpp
@@ -39,7 +39,7 @@ RegexpTester::RegexpTester(TQWidget* parent, const char* name, bool modal,
executePushButton = new TQPushButton(this);
executePushButton->setDefault(true);
copyPushButton = new TQPushButton(this);
- tquitPushButton = new TQPushButton(this);
+ quitPushButton = new TQPushButton(this);
statusBar = new TQStatusBar(this);
TQGridLayout *gridLayout = new TQGridLayout(2, 2, 6);
@@ -55,7 +55,7 @@ RegexpTester::RegexpTester(TQWidget* parent, const char* name, bool modal,
TQVBoxLayout *buttonLayout = new TQVBoxLayout(0, 6, 6);
buttonLayout->addWidget(executePushButton);
buttonLayout->addWidget(copyPushButton);
- buttonLayout->addWidget(tquitPushButton);
+ buttonLayout->addWidget(quitPushButton);
buttonLayout->addStretch(1);
TQHBoxLayout *middleLayout = new TQHBoxLayout(0, 6, 6);
middleLayout->addWidget(resultTable);
@@ -72,7 +72,7 @@ RegexpTester::RegexpTester(TQWidget* parent, const char* name, bool modal,
connect(copyPushButton, SIGNAL(clicked()), this, SLOT(copy()));
connect(executePushButton, SIGNAL(clicked()), this, SLOT(execute()));
- connect(tquitPushButton, SIGNAL(clicked()), this, SLOT(accept()));
+ connect(quitPushButton, SIGNAL(clicked()), this, SLOT(accept()));
execute();
}
@@ -174,6 +174,6 @@ void RegexpTester::languageChange()
wildcardCheckBox->setText(tr("&Wildcard"));
copyPushButton->setText(tr("&Copy"));
executePushButton->setText(tr("&Execute"));
- tquitPushButton->setText(tr("&Quit"));
+ quitPushButton->setText(tr("&Quit"));
}