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/queries/kexiquerydesignersql.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/queries/kexiquerydesignersql.h')
-rw-r--r-- | kexi/plugins/queries/kexiquerydesignersql.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/kexi/plugins/queries/kexiquerydesignersql.h b/kexi/plugins/queries/kexiquerydesignersql.h index f31c838f..ae07d457 100644 --- a/kexi/plugins/queries/kexiquerydesignersql.h +++ b/kexi/plugins/queries/kexiquerydesignersql.h @@ -18,8 +18,8 @@ * Boston, MA 02110-1301, USA. */ -#ifndef KEXIQUERYDESIGNERSQL_H -#define KEXIQUERYDESIGNERSQL_H +#ifndef KEXITQUERYDESIGNERSQL_H +#define KEXITQUERYDESIGNERSQL_H #include <kexiviewbase.h> #include "kexiquerypart.h" @@ -35,15 +35,16 @@ class KexiQueryDesignerSQLViewPrivate; class KexiQueryDesignerSQLView : public KexiViewBase { Q_OBJECT + TQ_OBJECT public: - KexiQueryDesignerSQLView(KexiMainWindow *mainWin, QWidget *parent, const char *name = 0); + KexiQueryDesignerSQLView(KexiMainWindow *mainWin, TQWidget *tqparent, const char *name = 0); virtual ~KexiQueryDesignerSQLView(); - QString sqlText() const; + TQString sqlText() const; KexiQueryDesignerSQLEditor *editor() const; - virtual bool eventFilter ( QObject *o, QEvent *e ); + virtual bool eventFilter ( TQObject *o, TQEvent *e ); protected: KexiQueryPart::TempData * tempData() const; @@ -54,9 +55,9 @@ class KexiQueryDesignerSQLView : public KexiViewBase virtual tristate storeData(bool dontAsk = false); void setStatusOk(); - void setStatusError(const QString& msg); + void setStatusError(const TQString& msg); void setStatusEmpty(); - void setStatusText(const QString& text); + void setStatusText(const TQString& text); virtual void updateActions(bool activated); @@ -66,7 +67,7 @@ class KexiQueryDesignerSQLView : public KexiViewBase bool slotCheckQuery(); void slotUpdateMode(); void slotTextChanged(); -// void slotHistoryHeaderButtonClicked(const QString& buttonIdentifier); +// void slotHistoryHeaderButtonClicked(const TQString& buttonIdentifier); void slotSelectQuery(); signals: |