summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/designeraction.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /kdevdesigner/designer/designeraction.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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);