summaryrefslogtreecommitdiffstats
path: root/kexi/core/kexitabledesignerinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/core/kexitabledesignerinterface.h')
-rw-r--r--kexi/core/kexitabledesignerinterface.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/core/kexitabledesignerinterface.h b/kexi/core/kexitabledesignerinterface.h
index 60d7d0c77..6aa9629ac 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