summaryrefslogtreecommitdiffstats
path: root/kommander/editor/functionsimpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/functionsimpl.h')
-rw-r--r--kommander/editor/functionsimpl.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kommander/editor/functionsimpl.h b/kommander/editor/functionsimpl.h
index fab8661d..05df768f 100644
--- a/kommander/editor/functionsimpl.h
+++ b/kommander/editor/functionsimpl.h
@@ -15,10 +15,10 @@
#ifndef _HAVE_FUNCTIONSIMPL_H_
#define _HAVE_FUNCTIONSIMPL_H_
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qwidget.h>
-#include <qdict.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqwidget.h>
+#include <tqdict.h>
#include "functions.h"
#include "specialinformation.h"
@@ -27,12 +27,12 @@ class FunctionsDialog : public FunctionsDialogBase
{
Q_OBJECT
public:
- FunctionsDialog(QWidget*, const QDict<QWidget>&, bool m_useInternalParser, char* = 0, bool = true);
+ FunctionsDialog(TQWidget*, const TQDict<TQWidget>&, bool m_useInternalParser, char* = 0, bool = true);
~FunctionsDialog();
// Return current content of text box
- QString functionText() const;
+ TQString functionText() const;
// Return current function and parameters
- QString currentFunctionText();
+ TQString currentFunctionText();
public slots:
// Update list of function availabe for given group
void groupChanged(int);
@@ -44,16 +44,16 @@ public slots:
void showParameters();
private:
// Calculate current parameters
- QString params();
+ TQString params();
SpecialFunction m_function;
int m_DCOP;
int m_Slots;
- const QDict<QWidget> m_widgetList;
- QStringList m_widgetNames;
- QStringList m_widgetTypes;
+ const TQDict<TQWidget> m_widgetList;
+ TQStringList m_widgetNames;
+ TQStringList m_widgetTypes;
bool m_useInternalParser;
- QStringList m_acceptedSlots;
- QMap<QString, QString> m_slotList;
+ TQStringList m_acceptedSlots;
+ TQMap<TQString, TQString> m_slotList;
};