summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/managedconnectionaccount.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/managedconnectionaccount.h')
-rw-r--r--kopete/libkopete/managedconnectionaccount.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/libkopete/managedconnectionaccount.h b/kopete/libkopete/managedconnectionaccount.h
index ad29feed..7d864dfc 100644
--- a/kopete/libkopete/managedconnectionaccount.h
+++ b/kopete/libkopete/managedconnectionaccount.h
@@ -44,21 +44,21 @@ class KOPETE_EXPORT ManagedConnectionAccount : public PasswordedAccount
* @param maxPasswordLength The maximum length for passwords for this account, or 0 for no limit
* @param name The name for this QObject
*/
- ManagedConnectionAccount( Protocol *parent, const QString &acctId, uint maxPasswordLength = 0, const char *name = 0 );
+ ManagedConnectionAccount( Protocol *parent, const TQString &acctId, uint maxPasswordLength = 0, const char *name = 0 );
public slots:
/**
* @brief Begin the connection process, by checking if the connection is available with the ConnectionManager.
* This method is called by PasswordedAccount::connect()
* @param password the password to connect with.
*/
- void connectWithPassword( const QString &password );
+ void connectWithPassword( const TQString &password );
protected:
/**
* @brief Connect to the server, once the network is available.
* This method is called by the ManagedConnectionAccount once the network is available. In this method you should set up your
* network connection and connect to the server.
*/
- virtual void performConnectWithPassword( const QString & password ) = 0;
+ virtual void performConnectWithPassword( const TQString & password ) = 0;
protected slots:
/**
* @brief Handle a change in the network connection
@@ -68,9 +68,9 @@ class KOPETE_EXPORT ManagedConnectionAccount : public PasswordedAccount
* @param host For future expansion.
* @param status the new status of the network
*/
- virtual void slotConnectionStatusChanged( const QString & host, NetworkStatus::EnumStatus status );
+ virtual void slotConnectionStatusChanged( const TQString & host, NetworkStatus::EnumStatus status );
private:
- QString m_password;
+ TQString m_password;
bool m_waitingForConnection;
};