diff options
Diffstat (limited to 'kexi/plugins/scripting/kexidb/kexidbfieldlist.h')
-rw-r--r-- | kexi/plugins/scripting/kexidb/kexidbfieldlist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/plugins/scripting/kexidb/kexidbfieldlist.h b/kexi/plugins/scripting/kexidb/kexidbfieldlist.h index ee990eb3..1d7b7665 100644 --- a/kexi/plugins/scripting/kexidb/kexidbfieldlist.h +++ b/kexi/plugins/scripting/kexidb/kexidbfieldlist.h @@ -20,7 +20,7 @@ #ifndef KROSS_KEXIDB_KEXIDBFIELDLIST_H #define KROSS_KEXIDB_KEXIDBFIELDLIST_H -#include <qstring.h> +#include <tqstring.h> #include <api/object.h> #include <api/list.h> @@ -61,7 +61,7 @@ namespace Kross { namespace KexiDB { public: KexiDBFieldList(::KexiDB::FieldList* fieldlist); virtual ~KexiDBFieldList(); - virtual const QString getClassName() const; + virtual const TQString getClassName() const; ::KexiDB::FieldList* fieldlist() { return m_fieldlist; } private: @@ -71,14 +71,14 @@ namespace Kross { namespace KexiDB { /** Return the field specified by the index-number passed as an argument. */ KexiDBField* field(uint index); /** Return the field specified by the as an argument passed fieldname. */ - KexiDBField* fieldByName(const QString& name); + KexiDBField* fieldByName(const TQString& name); /** Returns a list of all fields. */ Kross::Api::List* fields(); /** Returns true if the KexiDBField object passed as an argument is in the field list. */ bool hasField(KexiDBField* field); /** Return a list of field names. */ - const QStringList names() const; + const TQStringList names() const; /** Adds the KexiDBField object passed as an argument to the field list. */ void addField(KexiDBField* field); @@ -92,7 +92,7 @@ namespace Kross { namespace KexiDB { /** Set the fieldlist to the as argument passed list of fields. */ void setFields(KexiDBFieldList* fieldlist); /** Creates and returns list that contain fields selected by name. */ - KexiDBFieldList* subList(QValueList<QVariant> list); + KexiDBFieldList* subList(TQValueList<TQVariant> list); private: ::KexiDB::FieldList* m_fieldlist; |