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/core/kexitabledesignerinterface.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/core/kexitabledesignerinterface.h')
-rw-r--r-- | kexi/core/kexitabledesignerinterface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/core/kexitabledesignerinterface.h b/kexi/core/kexitabledesignerinterface.h index 60d7d0c7..6aa9629a 100644 --- a/kexi/core/kexitabledesignerinterface.h +++ b/kexi/core/kexitabledesignerinterface.h @@ -66,7 +66,7 @@ class KEXICORE_EXPORT KexiTableDesignerInterface Property set is also created. Existing field will be overwritten, so use insertEmptyRow() is you want to move subsequent fields down. */ - virtual void insertField(int row, const QString& caption, bool addCommand = false) = 0; + virtual void insertField(int row, const TQString& caption, bool addCommand = false) = 0; /*! Inserts a new \a field for \a row. Property set is also created. \a set will be deeply-copied into the new set. @@ -84,16 +84,16 @@ class KEXICORE_EXPORT KexiTableDesignerInterface /*! Changes property \a propertyName to \a newValue for a field pointed by \a fieldUID. If \a listData is not NULL and not empty, a deep copy of it is passed to Property::setListData(). If \a listData \a nlist if not NULL but empty, Property::setListData(0) is called. */ - virtual void changeFieldPropertyForRow( int fieldUID, const QCString& propertyName, - const QVariant& newValue, KoProperty::Property::ListData* const listData = 0, + virtual void changeFieldPropertyForRow( int fieldUID, const TQCString& propertyName, + const TQVariant& newValue, KoProperty::Property::ListData* const listData = 0, bool addCommand = false ) = 0; /*! Creates temporary table for the current design and returns debug string for it. */ - virtual QString debugStringForCurrentTableSchema(tristate& result) = 0; + virtual TQString debugStringForCurrentTableSchema(tristate& result) = 0; /*! Simulates execution of alter table, and puts debug into \a debugTarget. A case when debugTarget is not 0 is true for the alter table test suite. */ - virtual tristate simulateAlterTableExecution(QString *debugTarget) = 0; + virtual tristate simulateAlterTableExecution(TQString *debugTarget) = 0; /*! Real execution of the Alter Table. For debugging of the real alter table. \return true on success, false on failure and cancelled if user has cancelled |