summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/widgetaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/widgetaction.h')
-rw-r--r--kdevdesigner/designer/widgetaction.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/kdevdesigner/designer/widgetaction.h b/kdevdesigner/designer/widgetaction.h
index 6215d88d..fa3971c3 100644
--- a/kdevdesigner/designer/widgetaction.h
+++ b/kdevdesigner/designer/widgetaction.h
@@ -27,38 +27,38 @@
#ifndef WIDGETACTION_H
#define WIDGETACTION_H
-#include <qaction.h>
+#include <tqaction.h>
class WidgetAction : public QAction
{
Q_OBJECT
public:
- WidgetAction( const QString &grp, QObject* parent,
+ WidgetAction( const TQString &grp, TQObject* parent,
const char* name = 0, bool toggle = FALSE )
- : QAction( parent, name, toggle ) { init( grp ); }
- WidgetAction( const QString &grp, 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 ) { init( grp ); }
- WidgetAction( const QString &grp, const QString& text,
- const QString& menuText, QKeySequence accel, QObject* parent,
+ : TQAction( parent, name, toggle ) { init( grp ); }
+ WidgetAction( const TQString &grp, 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 ) { init( grp ); }
+ WidgetAction( const TQString &grp, const TQString& text,
+ const TQString& menuText, TQKeySequence accel, TQObject* parent,
const char* name = 0, bool toggle = FALSE )
- : QAction( text, menuText, accel, parent, name, toggle ) { init( grp ); }
+ : TQAction( text, menuText, accel, parent, name, toggle ) { init( grp ); }
~WidgetAction();
#if !defined(Q_NO_USING_KEYWORD)
- using QAction::addedTo;
+ using TQAction::addedTo;
#endif
- void addedTo( QWidget *, QWidget * );
+ void addedTo( TQWidget *, TQWidget * );
- QString group() const { return grp; }
+ TQString group() const { return grp; }
private:
- void init( const QString &g );
+ void init( const TQString &g );
private:
- QString grp;
+ TQString grp;
};