diff options
Diffstat (limited to 'kexi/plugins/scripting/kexidb/kexidbcursor.h')
-rw-r--r-- | kexi/plugins/scripting/kexidb/kexidbcursor.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/plugins/scripting/kexidb/kexidbcursor.h b/kexi/plugins/scripting/kexidb/kexidbcursor.h index 6e92a38e..6ff094ae 100644 --- a/kexi/plugins/scripting/kexidb/kexidbcursor.h +++ b/kexi/plugins/scripting/kexidb/kexidbcursor.h @@ -20,7 +20,7 @@ #ifndef KROSS_KEXIDB_KEXIDBCURSOR_H #define KROSS_KEXIDB_KEXIDBCURSOR_H -#include <qstring.h> +#include <tqstring.h> #include <api/object.h> #include <api/variant.h> @@ -87,7 +87,7 @@ namespace Kross { namespace KexiDB { public: KexiDBCursor(::KexiDB::Cursor* cursor); virtual ~KexiDBCursor(); - virtual const QString getClassName() const; + virtual const TQString getClassName() const; private: @@ -117,14 +117,14 @@ namespace Kross { namespace KexiDB { /** Returns current internal position of the cursor's query. Records are numbered from 0; the value -1 means that the cursor does not point to a valid record. */ - Q_LLONG at(); + TQ_LLONG at(); /** Returns the number of fields available for this cursor. */ uint fieldCount(); /** Returns the value stored in the passed column number (counting from 0). */ - QVariant value(uint index); + TQVariant value(uint index); /** Set the value for the field defined with index. The new value is buffered and does not got written as long as save() is not called. */ - bool setValue(uint index, QVariant value); + bool setValue(uint index, TQVariant value); /** Save any changes done with setValue(). You should call this only once at the end of all value/setValue iterations cause the cursor is closed once @@ -148,7 +148,7 @@ namespace Kross { namespace KexiDB { delete buffer; } }; - QMap<Q_LLONG, Record*> m_modifiedrecords; + TQMap<TQ_LLONG, Record*> m_modifiedrecords; void clearBuffers(); }; |