summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/scripting/kexidb/kexidbschema.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/scripting/kexidb/kexidbschema.h')
-rw-r--r--kexi/plugins/scripting/kexidb/kexidbschema.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kexi/plugins/scripting/kexidb/kexidbschema.h b/kexi/plugins/scripting/kexidb/kexidbschema.h
index 61b6bc88..c2243035 100644
--- a/kexi/plugins/scripting/kexidb/kexidbschema.h
+++ b/kexi/plugins/scripting/kexidb/kexidbschema.h
@@ -20,7 +20,7 @@
#ifndef KROSS_KEXIDB_KEXIDBSCHEMA_H
#define KROSS_KEXIDB_KEXIDBSCHEMA_H
-#include <qstring.h>
+#include <tqstring.h>
#include <api/object.h>
#include <api/class.h>
@@ -59,25 +59,25 @@ namespace Kross { namespace KexiDB {
class KexiDBSchema : public Kross::Api::Class<T>
{
public:
- KexiDBSchema(const QString& name, ::KexiDB::SchemaData* schema, ::KexiDB::FieldList* fieldlist);
+ KexiDBSchema(const TQString& name, ::KexiDB::SchemaData* schema, ::KexiDB::FieldList* fieldlist);
virtual ~KexiDBSchema();
private:
/** Returns the name of the schema. */
- const QString name() const;
+ const TQString name() const;
/** Set the name of the schema. */
- void setName(const QString& name);
+ void setName(const TQString& name);
/** Returns the caption of the schema. */
- const QString caption() const;
+ const TQString caption() const;
/** Set the caption of the schema. */
- void setCaption(const QString& caption);
+ void setCaption(const TQString& caption);
/** Returns a description of the schema. */
- const QString description() const;
+ const TQString description() const;
/** Set a description of the schema. */
- void setDescription(const QString& description);
+ void setDescription(const TQString& description);
/** Returns the KexiDBFieldList object this schema has. */
KexiDBFieldList* fieldlist() const;
@@ -95,7 +95,7 @@ namespace Kross { namespace KexiDB {
public:
KexiDBTableSchema(::KexiDB::TableSchema* tableschema);
virtual ~KexiDBTableSchema();
- virtual const QString getClassName() const;
+ virtual const TQString getClassName() const;
::KexiDB::TableSchema* tableschema();
private:
@@ -114,17 +114,17 @@ namespace Kross { namespace KexiDB {
public:
KexiDBQuerySchema(::KexiDB::QuerySchema* queryschema);
virtual ~KexiDBQuerySchema();
- virtual const QString getClassName() const;
+ virtual const TQString getClassName() const;
::KexiDB::QuerySchema* queryschema();
private:
/** Returns the SQL-statement of this query schema. */
- const QString statement() const;
+ const TQString statement() const;
/** Set the SQL-statement of this query schema. */
- void setStatement(const QString& statement);
+ void setStatement(const TQString& statement);
/** Set the where-expression. */
- bool setWhereExpression(const QString& whereexpression);
+ bool setWhereExpression(const TQString& whereexpression);
};