summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabel/spelldlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/kbabel/spelldlg.cpp')
-rw-r--r--kbabel/kbabel/spelldlg.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kbabel/kbabel/spelldlg.cpp b/kbabel/kbabel/spelldlg.cpp
index 49500e09..de9f2ce6 100644
--- a/kbabel/kbabel/spelldlg.cpp
+++ b/kbabel/kbabel/spelldlg.cpp
@@ -33,14 +33,14 @@
#include "spelldlg.h"
#include "spelldlgwidget.h"
-#include <qcheckbox.h>
-#include <qradiobutton.h>
+#include <tqcheckbox.h>
+#include <tqradiobutton.h>
#include <kconfig.h>
#include <kglobal.h>
#include <klocale.h>
-SpellDlg::SpellDlg(bool haveMarkedText,QWidget *parent,const char *name)
+SpellDlg::SpellDlg(bool haveMarkedText,TQWidget *parent,const char *name)
: KDialogBase(parent,name,true,i18n("Caption of dialog","Spelling")
, Ok|Cancel)
{
@@ -61,7 +61,7 @@ SpellDlg::SpellDlg(bool haveMarkedText,QWidget *parent,const char *name)
KConfig *config = KGlobal::config();
KConfigGroupSaver cs(config,"SpellDlg");
- QString what=config->readEntry("Default","All");
+ TQString what=config->readEntry("Default","All");
if(what=="All")
_mainWidget->allBtn->setChecked(true);
@@ -85,7 +85,7 @@ SpellDlg::~SpellDlg()
KConfig *config=KGlobal::config();
KConfigGroupSaver cs(config,"SpellDlg");
- QString what="All";
+ TQString what="All";
if(_mainWidget->endBtn->isChecked())
what="End";
else if(_mainWidget->beginBtn->isChecked())