summaryrefslogtreecommitdiffstats
path: root/kexi/widget/utils/kexidropdownbutton.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/utils/kexidropdownbutton.h')
-rw-r--r--kexi/widget/utils/kexidropdownbutton.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/kexi/widget/utils/kexidropdownbutton.h b/kexi/widget/utils/kexidropdownbutton.h
index fccbd409..a2d280a7 100644
--- a/kexi/widget/utils/kexidropdownbutton.h
+++ b/kexi/widget/utils/kexidropdownbutton.h
@@ -20,26 +20,27 @@
#ifndef KexiDropDownButton_H
#define KexiDropDownButton_H
-#include <qtoolbutton.h>
-#include <qguardedptr.h>
+#include <tqtoolbutton.h>
+#include <tqguardedptr.h>
//! @short A button for drop-down "Image" menu
/*! Used in KexiDBImageBox and KexiBlobTableEdit.
Additionally, the button reacts on pressing space, return, enter,
F2, F4 and alt+down buttons. */
-class KEXIGUIUTILS_EXPORT KexiDropDownButton : public QToolButton
+class KEXIGUIUTILS_EXPORT KexiDropDownButton : public TQToolButton
{
Q_OBJECT
+ TQ_OBJECT
public:
- KexiDropDownButton(QWidget *parent);
+ KexiDropDownButton(TQWidget *tqparent);
virtual ~KexiDropDownButton();
- virtual void drawButton( QPainter *p );
+ virtual void drawButton( TQPainter *p );
- virtual QSize sizeHint () const;
+ virtual TQSize tqsizeHint () const;
- virtual void keyPressEvent ( QKeyEvent * e );
+ virtual void keyPressEvent ( TQKeyEvent * e );
};
#endif