summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb/global.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/kexidb/global.h')
-rw-r--r--kexi/kexidb/global.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kexi/kexidb/global.h b/kexi/kexidb/global.h
index 78c1b68b..1a906ee3 100644
--- a/kexi/kexidb/global.h
+++ b/kexi/kexidb/global.h
@@ -21,7 +21,7 @@
#define KEXIDB_GLOBAL_H
#include <kexidb/kexidb_export.h>
-#include <qstring.h>
+#include <tqstring.h>
//global public definitions
@@ -66,14 +66,14 @@ Data representation
\section Drivers
-Drivers are loaded using DriverManager::driver(const QString& name). The names
+Drivers are loaded using DriverManager::driver(const TQString& name). The names
of drivers are given in their drivers .desktop file in the
X-Kexi-DriverName field.
KexiDB supports two kinds of databases: file-based and network-based databases.
The type of a driver is available from several places. The X-Kexi-DriverType
field in the driver's .desktop file, is read by the DriverManager and
-available by calling DriverManager::driverInfo(const QString &name) and using
+available by calling DriverManager::driverInfo(const TQString &name) and using
the Driver::Info#fileBased member from the result. Given a reference to a
Driver, its type can also be found directly using Driver::isFileDriver() const.
@@ -140,7 +140,7 @@ class KEXI_DB_EXPORT ServerVersionInfo
uint release;
//! Version string, as returned by the server
- QString string;
+ TQString string;
};
/*! Object types set like table or query. */
@@ -160,8 +160,8 @@ enum ObjectTypes {
}
#ifndef futureI18n
-# define futureI18n QString
-# define futureI18n2(a,b) QString(b)
+# define futureI18n TQString
+# define futureI18n2(a,b) TQString(b)
#endif
#ifndef FUTURE_I18N_NOOP