summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/settings/parseroptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/settings/parseroptions.cpp')
-rw-r--r--quanta/dialogs/settings/parseroptions.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/quanta/dialogs/settings/parseroptions.cpp b/quanta/dialogs/settings/parseroptions.cpp
index 0ad00d73..24e3c6a6 100644
--- a/quanta/dialogs/settings/parseroptions.cpp
+++ b/quanta/dialogs/settings/parseroptions.cpp
@@ -15,8 +15,8 @@
#include "parseroptions.h"
#include "parseroptions.moc"
-#include <qcombobox.h>
-#include <qspinbox.h>
+#include <tqcombobox.h>
+#include <tqspinbox.h>
#include <klocale.h>
#include <kconfig.h>
@@ -25,16 +25,16 @@
* Constructs a ParserOptions which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*/
-ParserOptions::ParserOptions( KConfig *a_config, QWidget* parent, const char* name )
+ParserOptions::ParserOptions( KConfig *a_config, TQWidget* parent, const char* name )
: ParserOptionsUI( parent, name )
{
config = a_config;
config->setGroup("Parser options");
- QString handleLBM = config->readEntry("LBM", i18n("Find Tag & Open Tree"));
- QString handleMBM = config->readEntry("MBM", i18n("Nothing"));
- QString handleRBM = config->readEntry("RBM", i18n("Popup Menu"));
- QString handleDoubleClick = config->readEntry("Double click", i18n("Select Tag Area"));
+ TQString handleLBM = config->readEntry("LBM", i18n("Find Tag & Open Tree"));
+ TQString handleMBM = config->readEntry("MBM", i18n("Nothing"));
+ TQString handleRBM = config->readEntry("RBM", i18n("Popup Menu"));
+ TQString handleDoubleClick = config->readEntry("Double click", i18n("Select Tag Area"));
if ( !name )