summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp')
-rw-r--r--kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp b/kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp
index 9e4bd508..8ae0f1d4 100644
--- a/kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp
+++ b/kopete/plugins/smpppdcs/libsmpppdclient/smpppdstate.cpp
@@ -25,7 +25,7 @@ State::State() {}
State::~State() {}
-QStringList State::read(Client * client) const {
+TQStringList State::read(Client * client) const {
return client->read();
}
@@ -41,19 +41,19 @@ KNetwork::KStreamSocket * State::socket(Client * client) const {
return client->m_sock;
}
-QString State::password(Client * client) const {
+TQString State::password(Client * client) const {
return client->m_password;
}
-void State::setPassword(Client * client, const QString& pass) {
+void State::setPassword(Client * client, const TQString& pass) {
client->m_password = pass;
}
-void State::setServerID(Client * client, const QString& id) {
+void State::setServerID(Client * client, const TQString& id) {
client->m_serverID = id;
}
-void State::setServerVersion(Client * client, const QString& ver) {
+void State::setServerVersion(Client * client, const TQString& ver) {
client->m_serverVer = ver;
}
@@ -61,16 +61,16 @@ void State::setSocket(Client * client, KNetwork::KStreamSocket * sock) {
client->m_sock = sock;
}
-bool State::connect(Client * /* client */, const QString& /* server */, uint /* port */) {
+bool State::connect(Client * /* client */, const TQString& /* server */, uint /* port */) {
return false;
}
void State::disconnect(Client * /* client */) {}
-QStringList State::getInterfaceConfigurations(Client * /* client */) {
- return QStringList();
+TQStringList State::getInterfaceConfigurations(Client * /* client */) {
+ return TQStringList();
}
-bool State::statusInterface(Client * /* client */, const QString& /* ifcfg */) {
+bool State::statusInterface(Client * /* client */, const TQString& /* ifcfg */) {
return false;
}