summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/kvirc/kernel/kvi_irccontext.cpp2
-rw-r--r--src/kvirc/kvs/kvi_kvs_corecallbackcommands.cpp2
-rw-r--r--src/kvirc/sparser/kvi_sp_numeric.cpp2
-rw-r--r--src/kvirc/sparser/kvi_sp_tables.cpp2
-rw-r--r--src/modules/options/optw_connection.cpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/kvirc/kernel/kvi_irccontext.cpp b/src/kvirc/kernel/kvi_irccontext.cpp
index 18feca1e..55c39984 100644
--- a/src/kvirc/kernel/kvi_irccontext.cpp
+++ b/src/kvirc/kernel/kvi_irccontext.cpp
@@ -856,7 +856,7 @@ void KviIrcContext::terminateConnectionRequest(bool bForce,const TQString &szQui
KviTQCString dat = console()->encodeText(buffer);
bWasSentQuit = false;
connection()->stateData()->setSentQuit();
- connection()->sendFmtData("TQUIT :%s",dat.data() ? dat.data() : ""); // here theoretically we COULD get disconnected
+ connection()->sendFmtData("QUIT :%s",dat.data() ? dat.data() : ""); // here theoretically we COULD get disconnected
} // else it was already sent anyway
if(KVI_OPTION_BOOL(KviOption_boolForceBrutalQuit) || bWasSentQuit || bForce)
diff --git a/src/kvirc/kvs/kvi_kvs_corecallbackcommands.cpp b/src/kvirc/kvs/kvi_kvs_corecallbackcommands.cpp
index 2e35f75a..7a675d26 100644
--- a/src/kvirc/kvs/kvi_kvs_corecallbackcommands.cpp
+++ b/src/kvirc/kvs/kvi_kvs_corecallbackcommands.cpp
@@ -884,7 +884,7 @@ namespace KviKvsCoreCallbackCommands
[comment]# We don't wait anymore :)[/comment]
%:state++
echo "Sending TQUIT..."
- return "TQUIT$cr$lf"
+ return "QUIT$cr$lf"
}
break;
default:
diff --git a/src/kvirc/sparser/kvi_sp_numeric.cpp b/src/kvirc/sparser/kvi_sp_numeric.cpp
index 265432f7..efa52201 100644
--- a/src/kvirc/sparser/kvi_sp_numeric.cpp
+++ b/src/kvirc/sparser/kvi_sp_numeric.cpp
@@ -1425,7 +1425,7 @@ void KviServerParser::parseNumericNoSuchNick(KviIrcMessage *msg)
}
}
// FIXME: #warning "KVI_OUT_NOSUCHNICKCHANNEL ?"
- // FIXME: #warning "TQUERIES SHOULD REPORT NO TARGET HERE! (?)"
+ // FIXME: #warning "QUERIES SHOULD REPORT NO TARGET HERE! (?)"
if(!msg->haltOutput())
{
KviWindow * pOut = (KviWindow *)(msg->connection()->findQuery(szNick));
diff --git a/src/kvirc/sparser/kvi_sp_tables.cpp b/src/kvirc/sparser/kvi_sp_tables.cpp
index 4432230c..948a5c0e 100644
--- a/src/kvirc/sparser/kvi_sp_tables.cpp
+++ b/src/kvirc/sparser/kvi_sp_tables.cpp
@@ -34,7 +34,7 @@ KviLiteralMessageParseStruct KviServerParser::m_literalParseProcTable[]=
{ "TOPIC" , PTM(parseLiteralTopic) },
{ "JOIN" , PTM(parseLiteralJoin) },
{ "PART" , PTM(parseLiteralPart) },
- { "TQUIT" , PTM(parseLiteralQuit) },
+ { "QUIT" , PTM(parseLiteralQuit) },
{ "NICK" , PTM(parseLiteralNick) },
{ "KICK" , PTM(parseLiteralKick) },
{ "NOTICE" , PTM(parseLiteralNotice) },
diff --git a/src/modules/options/optw_connection.cpp b/src/modules/options/optw_connection.cpp
index ecd026f2..d6990c9f 100644
--- a/src/modules/options/optw_connection.cpp
+++ b/src/modules/options/optw_connection.cpp
@@ -79,7 +79,7 @@ KviConnectionOptionsWidget::KviConnectionOptionsWidget(TQWidget * parent)
"that was <b>not requested by the user</b> by the means of the TQUIT message." \
"<p><b>Warning:</b> If you use /RAW to send a TQUIT message to the server, " \
"this option will not behave correctly, since does not detect the outgoing " \
- "TQUIT message and will attempt to reconnect after the server has closed the connection. " \
+ "QUIT message and will attempt to reconnect after the server has closed the connection. " \
"For this reason, always use the /TQUIT command to close your connections. " \
"This option may also behave incorrectly with bouncers that support " \
"detaching, in this case a solution could be to prepare an alias that sends the " \