summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/scripting/kexidb/kexidbdrivermanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/scripting/kexidb/kexidbdrivermanager.h')
-rw-r--r--kexi/plugins/scripting/kexidb/kexidbdrivermanager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/plugins/scripting/kexidb/kexidbdrivermanager.h b/kexi/plugins/scripting/kexidb/kexidbdrivermanager.h
index b6e31108..51b20271 100644
--- a/kexi/plugins/scripting/kexidb/kexidbdrivermanager.h
+++ b/kexi/plugins/scripting/kexidb/kexidbdrivermanager.h
@@ -20,7 +20,7 @@
#ifndef KROSS_KEXIDB_KEXIDBDRIVERMANAGER_H
#define KROSS_KEXIDB_KEXIDBDRIVERMANAGER_H
-#include <qstring.h>
+#include <tqstring.h>
#include <api/object.h>
#include <api/variant.h>
@@ -61,21 +61,21 @@ namespace Kross { namespace KexiDB {
public:
KexiDBDriverManager();
virtual ~KexiDBDriverManager();
- virtual const QString getClassName() const;
+ virtual const TQString getClassName() const;
private:
/** Returns a list with avaible drivernames. */
- const QStringList driverNames();
+ const TQStringList driverNames();
/** Return the to the defined drivername matching KexiDBDriver object. */
- KexiDBDriver* driver(const QString& drivername);
+ KexiDBDriver* driver(const TQString& drivername);
/** Return the to the defined mimetype-string matching drivername. */
- const QString lookupByMime(const QString& mimetype);
+ const TQString lookupByMime(const TQString& mimetype);
/** Return the matching mimetype for the defined file. */
- const QString mimeForFile(const QString& filename);
+ const TQString mimeForFile(const TQString& filename);
/** Return a new KexiDBConnectionData object. */
KexiDBConnectionData* createConnectionData();
@@ -83,13 +83,13 @@ namespace Kross { namespace KexiDB {
/** Create and return a KexiDBConnectionData object. Fill the content of the
KexiDBConnectionData object with the defined file as. The file could be e.g.
a *.kexi file or a *.kexis file. */
- KexiDBConnectionData* createConnectionDataByFile(const QString& filename);
+ KexiDBConnectionData* createConnectionDataByFile(const TQString& filename);
/** Return a new KexiDBField object. */
KexiDBField* field();
/** Return a new KexiDBTableSchema object. */
- KexiDBTableSchema* tableSchema(const QString& tablename);
+ KexiDBTableSchema* tableSchema(const TQString& tablename);
/** Return a new KexiDBQuerySchema object. */
KexiDBQuerySchema* querySchema();