summaryrefslogtreecommitdiffstats
path: root/kword/KWMailMergeLabelAction.h
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWMailMergeLabelAction.h')
-rw-r--r--kword/KWMailMergeLabelAction.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/kword/KWMailMergeLabelAction.h b/kword/KWMailMergeLabelAction.h
index a0aacfed..da523864 100644
--- a/kword/KWMailMergeLabelAction.h
+++ b/kword/KWMailMergeLabelAction.h
@@ -25,20 +25,21 @@
#define _MAILMERGE_ACTIONS_
#include <kaction.h>
-#include <qtoolbutton.h>
+#include <tqtoolbutton.h>
class KWMailMergeLabelAction : public KAction
{
Q_OBJECT
+ TQ_OBJECT
public:
- KWMailMergeLabelAction( const QString &text, int accel,
- QObject* receiver, const char* slot, QObject *parent = 0, const char *name = 0 );
+ KWMailMergeLabelAction( const TQString &text, int accel,
+ TQObject* receiver, const char* slot, TQObject *tqparent = 0, const char *name = 0 );
- virtual int plug( QWidget *widget, int index = -1 );
- virtual void unplug( QWidget *widget );
- QToolButton * label() { return m_label; }
+ virtual int plug( TQWidget *widget, int index = -1 );
+ virtual void unplug( TQWidget *widget );
+ TQToolButton * label() { return m_label; }
private:
- QToolButton * m_label;
+ TQToolButton * m_label;
};
#endif