summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kernel/kvi_ircconnectionstatedata.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/kernel/kvi_ircconnectionstatedata.h')
-rw-r--r--src/kvirc/kernel/kvi_ircconnectionstatedata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kvirc/kernel/kvi_ircconnectionstatedata.h b/src/kvirc/kernel/kvi_ircconnectionstatedata.h
index 3a70c749..7c9df71c 100644
--- a/src/kvirc/kernel/kvi_ircconnectionstatedata.h
+++ b/src/kvirc/kernel/kvi_ircconnectionstatedata.h
@@ -46,7 +46,7 @@ public:
protected:
bool m_bSentQuit; // have we sent the quit message for this connection ?
unsigned int m_uLoginNickIndex; // the index of the identity nicknames used until now (see KviIrcConnection::loginToIrcServer())
- QString m_szCommandToExecAfterConnect; // yes.. this is a special command to execute after connection
+ TQString m_szCommandToExecAfterConnect; // yes.. this is a special command to execute after connection
bool m_bSimulateUnexpectedDisconnect; // this is set to true if we have to simulate an unexpected disconnect even if we have sent a normal quit message
kvi_time_t m_tLastReceivedChannelWhoReply; // the time that we have received our last channel who reply
kvi_time_t m_tLastSentChannelWhoRequest; // the time that we have sent our last channel who request
@@ -70,8 +70,8 @@ public:
unsigned int loginNickIndex(){ return m_uLoginNickIndex; };
void setLoginNickIndex(unsigned int uNickIdx){ m_uLoginNickIndex = uNickIdx; };
- const QString & commandToExecAfterConnect(){ return m_szCommandToExecAfterConnect; };
- void setCommandToExecAfterConnect(const QString &szCmd){ m_szCommandToExecAfterConnect = szCmd; };
+ const TQString & commandToExecAfterConnect(){ return m_szCommandToExecAfterConnect; };
+ void setCommandToExecAfterConnect(const TQString &szCmd){ m_szCommandToExecAfterConnect = szCmd; };
};
#endif //!_KVI_IRCCONNECTIONSTATEDATA_H_