diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 24c5cdc2737fe0044b11a12359606973eb93fc0b (patch) | |
tree | a670701ebff60c73e9f32aab588e9b3d395d74f9 /libkdegames/kchatbase.cpp | |
parent | f6000cffbc89072156cad7866d179fbd622df317 (diff) | |
download | tdegames-24c5cdc2737fe0044b11a12359606973eb93fc0b.tar.gz tdegames-24c5cdc2737fe0044b11a12359606973eb93fc0b.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdegames/kchatbase.cpp')
-rw-r--r-- | libkdegames/kchatbase.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkdegames/kchatbase.cpp b/libkdegames/kchatbase.cpp index 00827e6d..4f0c9931 100644 --- a/libkdegames/kchatbase.cpp +++ b/libkdegames/kchatbase.cpp @@ -262,7 +262,7 @@ bool KChatBase::insertSendingEntry(const TQString& text, int id, int index) kdWarning(11000) << "KChatBase: Cannot add an entry to the combo box" << endl; return false; } - if (d->mIndex2Id.tqfindIndex(id) != -1) { + if (d->mIndex2Id.findIndex(id) != -1) { kdError(11000) << "KChatBase: Cannot add more than one entry with the same ID! " << endl; kdError(11000) << "KChatBase: Text="<<text<<endl; return false; @@ -324,13 +324,13 @@ void KChatBase::setSendingEntry(int id) int KChatBase::findIndex(int id) const { - return d->mIndex2Id.tqfindIndex(id); + return d->mIndex2Id.findIndex(id); } int KChatBase::nextId() const { int i = SendToAll + 1; - while (d->mIndex2Id.tqfindIndex(i) != -1) { + while (d->mIndex2Id.findIndex(i) != -1) { i++; } return i; @@ -362,7 +362,7 @@ TQListBoxItem* KChatBase::layoutMessage(const TQString& fromName, const TQString //TODO: KChatBaseConfigure? - e.g. color TQListBoxItem* message; if (text.startsWith("/me ")) { - // tqreplace "/me" by a nice star. leave one space after the star + // replace "/me" by a nice star. leave one space after the star TQPixmap pix; pix.load(locate("data", TQString::tqfromLatin1("kdegames/pics/star.png"))); |