summaryrefslogtreecommitdiffstats
path: root/konversation/src/inputfilter.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:07:29 +0900
commitdaa879285a47809e41a13f6cf104191a32d291cb (patch)
tree7ddd8c57d9d48a21e1cdda58abe9dc66c989a8ac /konversation/src/inputfilter.cpp
parentcba78c439a23abcb5bb895505ff55de902c1c6aa (diff)
downloadkonversation-daa879285a47809e41a13f6cf104191a32d291cb.tar.gz
konversation-daa879285a47809e41a13f6cf104191a32d291cb.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konversation/src/inputfilter.cpp')
-rw-r--r--konversation/src/inputfilter.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/konversation/src/inputfilter.cpp b/konversation/src/inputfilter.cpp
index e272223..2694b32 100644
--- a/konversation/src/inputfilter.cpp
+++ b/konversation/src/inputfilter.cpp
@@ -862,7 +862,7 @@ void InputFilter::parseServerCommand(const TQString &prefix, const TQString &com
when.setTime_t(parameterList[2].toUInt());
server->appendCommandMessageToChannel(parameterList[1],i18n("Created"),
i18n("This channel was created on %1.")
- .arg(when.toString(Qt::LocalDate))
+ .arg(when.toString(TQt::LocalDate))
);
if(Preferences::autoWhoContinuousEnabled())
@@ -962,7 +962,7 @@ void InputFilter::parseServerCommand(const TQString &prefix, const TQString &com
{
server->appendCommandMessageToChannel(parameterList[1],i18n("Topic"),
i18n("The topic was set by %1 on %2.")
- .arg(parameterList[2]).arg(when.toString(Qt::LocalDate)),
+ .arg(parameterList[2]).arg(when.toString(TQt::LocalDate)),
false);
}
else
@@ -970,7 +970,7 @@ void InputFilter::parseServerCommand(const TQString &prefix, const TQString &com
server->appendMessageToFrontmost(i18n("Topic"),i18n("The topic for %1 was set by %2 on %3.")
.arg(parameterList[1])
.arg(parameterList[2])
- .arg(when.toString(Qt::LocalDate))
+ .arg(when.toString(TQt::LocalDate))
);
setAutomaticRequest("TOPIC",parameterList[1],false);
}
@@ -1535,7 +1535,7 @@ void InputFilter::parseServerCommand(const TQString &prefix, const TQString &com
{
server->appendMessageToFrontmost(i18n("Whois"),
i18n("%1 has been online since %2.")
- .arg(parameterList[1]).arg(when.toString(Qt::LocalDate))
+ .arg(parameterList[1]).arg(when.toString(TQt::LocalDate))
);
}
}
@@ -1668,7 +1668,7 @@ void InputFilter::parseServerCommand(const TQString &prefix, const TQString &com
TQDateTime when;
when.setTime_t(parameterList[4].toUInt());
- server->appendMessageToFrontmost(i18n("BanList:%1").arg(parameterList[1]), i18n("BanList message: e.g. *!*@aol.com set by MrGrim on <date>", "%1 set by %2 on %3").arg(parameterList[2]).arg(parameterList[3].section('!', 0, 0)).arg(when.toString(Qt::LocalDate)));
+ server->appendMessageToFrontmost(i18n("BanList:%1").arg(parameterList[1]), i18n("BanList message: e.g. *!*@aol.com set by MrGrim on <date>", "%1 set by %2 on %3").arg(parameterList[2]).arg(parameterList[3].section('!', 0, 0)).arg(when.toString(TQt::LocalDate)));
}
break;
}