summaryrefslogtreecommitdiffstats
path: root/kexi/plugins/scripting/kexidb/kexidbconnectiondata.h
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/plugins/scripting/kexidb/kexidbconnectiondata.h')
-rw-r--r--kexi/plugins/scripting/kexidb/kexidbconnectiondata.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/kexi/plugins/scripting/kexidb/kexidbconnectiondata.h b/kexi/plugins/scripting/kexidb/kexidbconnectiondata.h
index aaddffbd..b82c7b6e 100644
--- a/kexi/plugins/scripting/kexidb/kexidbconnectiondata.h
+++ b/kexi/plugins/scripting/kexidb/kexidbconnectiondata.h
@@ -20,7 +20,7 @@
#ifndef KROSS_KEXIDB_KEXIDBCONNECTIONDATA_H
#define KROSS_KEXIDB_KEXIDBCONNECTIONDATA_H
-#include <qstring.h>
+#include <tqstring.h>
#include <api/object.h>
#include <api/variant.h>
@@ -44,46 +44,46 @@ namespace Kross { namespace KexiDB {
virtual ~KexiDBConnectionData();
operator ::KexiDB::ConnectionData& () { return *m_data; }
operator ::KexiDB::ConnectionData* () { return m_data; }
- virtual const QString getClassName() const;
+ virtual const TQString getClassName() const;
::KexiDB::ConnectionData* data() { return m_data; }
private:
/** Return the connection name. */
- const QString caption() const;
+ const TQString caption() const;
/** Set the connection name. */
- void setCaption(const QString& name);
+ void setCaption(const TQString& name);
/** Return the description. */
- const QString description() const;
+ const TQString description() const;
/** Set the description. */
- void setDescription(const QString& desc);
+ void setDescription(const TQString& desc);
/** Return drivername. */
- const QString driverName() const;
+ const TQString driverName() const;
/** Set the drivername. */
- void setDriverName(const QString& driver);
+ void setDriverName(const TQString& driver);
/** Return true if a local socket file is used else false. */
bool localSocketFileUsed() const;
/** Set if the local socket file should be used. */
void setLocalSocketFileUsed(bool used);
/** Return the local socket filename. */
- const QString localSocketFileName() const;
+ const TQString localSocketFileName() const;
/** Set the local socket filename. */
- void setLocalSocketFileName(const QString& socketfilename);
+ void setLocalSocketFileName(const TQString& socketfilename);
// For serverbased drivers
/** Return the database name. */
- const QString databaseName() const;
+ const TQString databaseName() const;
/** Set the database name. */
- void setDatabaseName(const QString& dbname);
+ void setDatabaseName(const TQString& dbname);
/** Return the hostname. */
- const QString hostName() const;
+ const TQString hostName() const;
/** Set the hostname. */
- void setHostName(const QString& hostname);
+ void setHostName(const TQString& hostname);
/** Return the port number. */
int port() const;
@@ -91,33 +91,33 @@ namespace Kross { namespace KexiDB {
void setPort(int p);
/** Return the password. */
- const QString password() const;
+ const TQString password() const;
/** Set the password. */
- void setPassword(const QString& passwd);
+ void setPassword(const TQString& passwd);
/** Return the username. */
- const QString userName() const;
+ const TQString userName() const;
/** Set the username. */
- void setUserName(const QString& username);
+ void setUserName(const TQString& username);
// For filebased drivers
/** Return the filename. */
- const QString fileName() const;
+ const TQString fileName() const;
/** Set the filename. */
- void setFileName(const QString& filename);
+ void setFileName(const TQString& filename);
/** Return the database path. */
- const QString dbPath() const;
+ const TQString dbPath() const;
/** Return the database filename. */
- const QString dbFileName() const;
+ const TQString dbFileName() const;
/** Return a user-friendly string representation. */
- const QString serverInfoString() const;
+ const TQString serverInfoString() const;
private:
::KexiDB::ConnectionData* m_data;
- QString m_dbname;
+ TQString m_dbname;
};
}}