summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/designeraction.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/designeraction.h')
-rw-r--r--kdevdesigner/designer/designeraction.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kdevdesigner/designer/designeraction.h b/kdevdesigner/designer/designeraction.h
index d8153574..0efd69dd 100644
--- a/kdevdesigner/designer/designeraction.h
+++ b/kdevdesigner/designer/designeraction.h
@@ -20,24 +20,24 @@
#ifndef DESIGNERACTION_H
#define DESIGNERACTION_H
-#include <qaction.h>
+#include <tqaction.h>
class DesignerAction : public QAction
{
Q_OBJECT
public:
- DesignerAction(QObject *parent = 0, const char *name = 0)
- :QAction(parent, name) {}
- DesignerAction ( const QString & menuText, QKeySequence accel, QObject * parent, const char * name = 0 )
- :QAction(menuText, accel, parent, name) {}
- DesignerAction ( const QIconSet & icon, const QString & menuText, QKeySequence accel, QObject * parent, const char * name = 0 )
- :QAction(icon, menuText, accel, parent, name) {}
- DesignerAction ( const QString & text, const QIconSet & icon, const QString & menuText, QKeySequence accel, QObject * parent, const char * name = 0, bool toggle = FALSE )
- :QAction(text, icon, menuText, accel, parent, name, toggle) {}
- DesignerAction ( const QString & text, const QString & menuText, QKeySequence accel, QObject * parent, const char * name = 0, bool toggle = FALSE )
- :QAction(text, menuText, accel, parent, name, toggle) {}
- DesignerAction ( QObject * parent, const char * name, bool toggle )
- :QAction(parent, name, toggle) {}
+ DesignerAction(TQObject *parent = 0, const char *name = 0)
+ :TQAction(parent, name) {}
+ DesignerAction ( const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0 )
+ :TQAction(menuText, accel, parent, name) {}
+ DesignerAction ( const TQIconSet & icon, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0 )
+ :TQAction(icon, menuText, accel, parent, name) {}
+ DesignerAction ( const TQString & text, const TQIconSet & icon, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = FALSE )
+ :TQAction(text, icon, menuText, accel, parent, name, toggle) {}
+ DesignerAction ( const TQString & text, const TQString & menuText, TQKeySequence accel, TQObject * parent, const char * name = 0, bool toggle = FALSE )
+ :TQAction(text, menuText, accel, parent, name, toggle) {}
+ DesignerAction ( TQObject * parent, const char * name, bool toggle )
+ :TQAction(parent, name, toggle) {}
~DesignerAction();
virtual void setEnabled(bool e);