diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-25 05:28:35 +0000 |
commit | f008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch) | |
tree | 8e9244c4d4957c36be81e15b566b4aa5ea26c982 /kexi/plugins/tables/kexilookupcolumnpage.h | |
parent | 1210f27b660efb7b37ff43ec68763e85a403471f (diff) | |
download | koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip |
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/plugins/tables/kexilookupcolumnpage.h')
-rw-r--r-- | kexi/plugins/tables/kexilookupcolumnpage.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/kexi/plugins/tables/kexilookupcolumnpage.h b/kexi/plugins/tables/kexilookupcolumnpage.h index 457b2e3d..f7b79bb2 100644 --- a/kexi/plugins/tables/kexilookupcolumnpage.h +++ b/kexi/plugins/tables/kexilookupcolumnpage.h @@ -19,7 +19,7 @@ #ifndef KEXILOOKUPCOLUMNPAGE_H #define KEXILOOKUPCOLUMNPAGE_H -#include <qwidget.h> +#include <tqwidget.h> #include <kexidb/field.h> #include <kexidb/utils.h> #include <koproperty/set.h> @@ -31,9 +31,9 @@ class KexiFieldComboBox; class KexiFieldListView; class KexiProject; class KexiSmallToolButton; -class QToolButton; -class QLabel; -class QFrame; +class TQToolButton; +class TQLabel; +class TQFrame; //! @short A page within table designer's property pane, providing lookup column editor. /*! It's data model is basically KexiDB::LookupFieldSchema class, but the page does @@ -42,12 +42,13 @@ class QFrame; @todo not all features of KexiDB::LookupFieldSchema class are displayed on this page yet */ -class KexiLookupColumnPage : public QWidget +class KexiLookupColumnPage : public TQWidget { Q_OBJECT + TQ_OBJECT public: - KexiLookupColumnPage(QWidget *parent); + KexiLookupColumnPage(TQWidget *tqparent); virtual ~KexiLookupColumnPage(); public slots: @@ -61,14 +62,14 @@ class KexiLookupColumnPage : public QWidget signals: //! Signal emitted when helper button 'Go to selected row sourcesource' is clicked. - void jumpToObjectRequested(const QCString& mime, const QCString& name); + void jumpToObjectRequested(const TQCString& mime, const TQCString& name); // /*! Signal emitted when current bound column has been changed. */ -// void boundColumnChanged(const QString& string, const QString& caption, +// void boundColumnChanged(const TQString& string, const TQString& caption, // KexiDB::Field::Type type); protected slots: - void slotRowSourceTextChanged(const QString & string); + void slotRowSourceTextChanged(const TQString & string); void slotRowSourceChanged(); void slotGotoSelectedRowSource(); void slotBoundColumnSelected(); @@ -78,7 +79,7 @@ class KexiLookupColumnPage : public QWidget void updateBoundColumnWidgetsAvailability(); //! Used instead of m_propertySet->changeProperty() to honor m_propertySetEnabled - void changeProperty(const QCString &property, const QVariant &value); + void changeProperty(const TQCString &property, const TQVariant &value); private: class Private; |