summaryrefslogtreecommitdiffstats
path: root/kiten/dict.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kiten/dict.cpp')
-rw-r--r--kiten/dict.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kiten/dict.cpp b/kiten/dict.cpp
index cde11f1c..0b86e906 100644
--- a/kiten/dict.cpp
+++ b/kiten/dict.cpp
@@ -41,7 +41,7 @@ void msgerr(const TQString &msg, const TQString &dict = TQString())
{
TQString output = msg;
if (!dict.isNull())
- output = msg.tqarg(dict);
+ output = msg.arg(dict);
KMessageBox::error(0, output);
}
}
@@ -50,7 +50,7 @@ using namespace Dict;
TextType Dict::textType(const TQString &text)
{
- ushort first = text.tqat(0).tqunicode();
+ ushort first = text.at(0).tqunicode();
if (first < 0x3000)
return Text_Latin;
@@ -487,7 +487,7 @@ TQRegExp Dict::Index::createRegExp(SearchType type, const TQString &text, Dictio
regExp = "%1";
}
- return TQRegExp(regExp.tqarg(text), caseSensitive);
+ return TQRegExp(regExp.arg(text), caseSensitive);
}
int Index::stringCompare(File &file, int index, TQCString str)