summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabel/kbhighlighting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/kbabel/kbhighlighting.cpp')
-rw-r--r--kbabel/kbabel/kbhighlighting.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbabel/kbabel/kbhighlighting.cpp b/kbabel/kbabel/kbhighlighting.cpp
index 05aada8f..c67d56a7 100644
--- a/kbabel/kbabel/kbhighlighting.cpp
+++ b/kbabel/kbabel/kbhighlighting.cpp
@@ -98,7 +98,7 @@ void KBabelHighlighter::highlight( )
// create a single line out of the text: remove "\n", so that we only
// have to deal with one single line of text.
TQString text = _edit->text( );
- text.tqreplace( "\n", "" );
+ text.replace( "\n", "" );
TQRegExp rx;
int pos;
@@ -107,10 +107,10 @@ void KBabelHighlighter::highlight( )
{
for ( uint i = 0; i < regexps.count( ); ++i ) {
rx.setPattern( regexps[i] );
- pos = text.tqfind( rx );
+ pos = text.find( rx );
while ( pos >= 0 ) {
doHighlighting( (HighlightType)(i+1), pos, rx.matchedLength( ) );
- pos = text.tqfind( rx, pos + rx.matchedLength( ) );
+ pos = text.find( rx, pos + rx.matchedLength( ) );
}
}
}
@@ -223,7 +223,7 @@ void KBabelHighlighter::flushCurrentWord()
currentPos += tags.matchedLength();
}
- currentWord.tqreplace ( tags, "" );
+ currentWord.replace ( tags, "" );
if (!currentWord.isEmpty()) {
bool isPlainWord = true;
@@ -251,7 +251,7 @@ bool KBabelHighlighter::isMisspelled(const TQString& wordRaw)
// word first.
TQString word = wordRaw;
kdDebug(KBABEL) << "isampersand: checking (raw):" << word << endl;
- word.tqreplace("&", "" );
+ word.replace("&", "" );
kdDebug(KBABEL) << "isMisspelled: checking: " << word << endl;
// Normally isMisspelled would look up a dictionary and return
@@ -266,7 +266,7 @@ bool KBabelHighlighter::isMisspelled(const TQString& wordRaw)
// there is no 'spelt correctly' signal so default to Okay
kdDebug(KBABEL) << "Adding word " << word << endl;
- dict.tqreplace(word, Okay);
+ dict.replace(word, Okay);
mSpell->checkWord(word, false);
return false;
}
@@ -275,7 +275,7 @@ void KBabelHighlighter::slotMisspelling(const TQString & originalword,
const TQStringList & suggestions, unsigned int)
{
kdDebug(KBABEL) << "Misspelled " << originalword << ", " << suggestions << endl;
- dict.tqreplace( originalword, NotOkay );
+ dict.replace( originalword, NotOkay );
// this is slow but since kspell is async this will have to do for now
highlight();