diff options
Diffstat (limited to 'libtdegames/kchatbase.cpp')
-rw-r--r-- | libtdegames/kchatbase.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libtdegames/kchatbase.cpp b/libtdegames/kchatbase.cpp index 06b5b5d5..14f74103 100644 --- a/libtdegames/kchatbase.cpp +++ b/libtdegames/kchatbase.cpp @@ -26,7 +26,7 @@ #include <kapplication.h> #include <kdebug.h> -#include <layout.h> +#include <tqlayout.h> #include <tqcombobox.h> #include <tqpainter.h> @@ -73,14 +73,14 @@ void KChatBaseText::init() void KChatBaseText::setName(const TQString& n) { // d->mName = n; - d->mName = TQString("%1: ").arg(n); - setText(TQString("%1: %2").arg(name()).arg(message())); // esp. for sorting + d->mName = TQString("%1: ").tqarg(n); + setText(TQString("%1: %2").tqarg(name()).tqarg(message())); // esp. for sorting } void KChatBaseText::setMessage(const TQString& m) { d->mMessage = m; - setText(TQString("%1: %2").arg(name()).arg(message())); // esp. for sorting + setText(TQString("%1: %2").tqarg(name()).tqarg(message())); // esp. for sorting } const TQString& KChatBaseText::name() const @@ -364,11 +364,11 @@ TQListBoxItem* KChatBase::layoutMessage(const TQString& fromName, const TQString if (text.startsWith("/me ")) { // replace "/me" by a nice star. leave one space after the star TQPixmap pix; - pix.load(locate("data", TQString::fromLatin1("tdegames/pics/star.png"))); + pix.load(locate("data", TQString::tqfromLatin1("tdegames/pics/star.png"))); //TODO KChatBasePixmap? Should change the font here! - message = (TQListBoxItem*)new TQListBoxPixmap(pix, i18n("%1 %2").arg(fromName).arg(text.mid(3))); + message = (TQListBoxItem*)new TQListBoxPixmap(pix, i18n("%1 %2").tqarg(fromName).tqarg(text.mid(3))); } else { // the text is not edited in any way. just return an item KChatBaseText* m = new KChatBaseText(fromName, text); @@ -384,7 +384,7 @@ TQListBoxItem* KChatBase::layoutSystemMessage(const TQString& fromName, const TQ //TODO: KChatBaseConfigure? - e.g. color // no need to check for /me etc. - KChatBaseText* m = new KChatBaseText(i18n("--- %1").arg(fromName), text); + KChatBaseText* m = new KChatBaseText(i18n("--- %1").tqarg(fromName), text); m->setNameFont(&d->mSystemNameFont); m->setMessageFont(&d->mSystemMessageFont); return (TQListBoxItem*)m; @@ -406,7 +406,7 @@ void KChatBase::slotReturnPressed(const TQString& text) TQString KChatBase::comboBoxItem(const TQString& name) const { // TODO: such a function for "send to all" and "send to my group" - return i18n("Send to %1").arg(name); + return i18n("Send to %1").tqarg(name); } void KChatBase::slotClear() |