summaryrefslogtreecommitdiffstats
path: root/kommander/widget/invokeclass.h
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widget/invokeclass.h')
-rw-r--r--kommander/widget/invokeclass.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kommander/widget/invokeclass.h b/kommander/widget/invokeclass.h
index 61688b3e..4b1a8c0b 100644
--- a/kommander/widget/invokeclass.h
+++ b/kommander/widget/invokeclass.h
@@ -13,43 +13,43 @@
#ifndef INVOKECLASS_H
#define INVOKECLASS_H
-#include <qobject.h>
-#include <qstringlist.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
-class InvokeClass : public QObject {
+class InvokeClass : public TQObject {
Q_OBJECT
public:
- InvokeClass(QObject *parent);
- void invokeSlot(QObject *object, const QString& slot, QStringList args);
+ InvokeClass(TQObject *parent);
+ void invokeSlot(TQObject *object, const TQString& slot, TQStringList args);
- static QStringList acceptedSlots()
+ static TQStringList acceptedSlots()
{
- static QStringList acceptedSlots;
- acceptedSlots << "const QString&";
- acceptedSlots << "const QString&,const QString&";
+ static TQStringList acceptedSlots;
+ acceptedSlots << "const TQString&";
+ acceptedSlots << "const TQString&,const TQString&";
acceptedSlots << "bool";
acceptedSlots << "int";
acceptedSlots << "int,int";
acceptedSlots << "int,int,int";
acceptedSlots << "int,int,int,int";
- acceptedSlots << "const QColor&";
+ acceptedSlots << "const TQColor&";
return acceptedSlots;
}
signals:
void invoke();
- void invoke(const QString&);
- void invoke(const QString&,const QString&);
+ void invoke(const TQString&);
+ void invoke(const TQString&,const TQString&);
void invoke(bool);
void invoke(int);
void invoke(int,int);
void invoke(int,int,int);
void invoke(int,int,int,int);
- void invoke(const QColor&);
+ void invoke(const TQColor&);
private:
- QStringList m_acceptedSlots;
+ TQStringList m_acceptedSlots;
};