summaryrefslogtreecommitdiffstats
path: root/kexi/widget/tableview/kexicomboboxpopup.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/widget/tableview/kexicomboboxpopup.h')
-rw-r--r--kexi/widget/tableview/kexicomboboxpopup.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/kexi/widget/tableview/kexicomboboxpopup.h b/kexi/widget/tableview/kexicomboboxpopup.h
index 42a15404..d78955b2 100644
--- a/kexi/widget/tableview/kexicomboboxpopup.h
+++ b/kexi/widget/tableview/kexicomboboxpopup.h
@@ -20,7 +20,7 @@
#ifndef KEXICOMBOBOXPOPUP_H
#define KEXICOMBOBOXPOPUP_H
-#include <qframe.h>
+#include <tqframe.h>
class KexiComboBoxPopupPrivate;
class KexiTableView;
@@ -32,19 +32,20 @@ namespace KexiDB {
}
//! Internal class for displaying popup table view
-class KexiComboBoxPopup : public QFrame
+class KexiComboBoxPopup : public TQFrame
{
Q_OBJECT
+ TQ_OBJECT
public:
//js TODO: more ctors!
/*! Constructor for creating a popup using definition from \a column.
If the column is lookup column, it's definition is used to display
one or more column within the popup. Otherwise column.field() is used
to display single-column data. */
- KexiComboBoxPopup(QWidget* parent, KexiTableViewColumn &column);
+ KexiComboBoxPopup(TQWidget* tqparent, KexiTableViewColumn &column);
/*! Alternative constructor supporting lookup fields and enum hints. */
- KexiComboBoxPopup(QWidget* parent, KexiDB::Field &field);
+ KexiComboBoxPopup(TQWidget* tqparent, KexiDB::Field &field);
virtual ~KexiComboBoxPopup();
@@ -59,7 +60,7 @@ class KexiComboBoxPopup : public QFrame
/*! Default maximum number of rows for KexiComboBoxPopup objects. */
static const int defaultMaxRows;
- virtual bool eventFilter( QObject *o, QEvent *e );
+ virtual bool eventFilter( TQObject *o, TQEvent *e );
signals:
void rowAccepted(KexiTableItem *item, int row);