diff options
Diffstat (limited to 'kspell2/ui')
-rw-r--r-- | kspell2/ui/dialog.cpp | 2 | ||||
-rw-r--r-- | kspell2/ui/highlighter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kspell2/ui/dialog.cpp b/kspell2/ui/dialog.cpp index 46e31ad82..e8444bec6 100644 --- a/kspell2/ui/dialog.cpp +++ b/kspell2/ui/dialog.cpp @@ -261,7 +261,7 @@ void Dialog::slotMisspelling(const TQString& word, int start ) { kdDebug()<<"Dialog misspelling!!"<<endl; d->currentWord = Word( word, start ); - if ( d->replaceAllMap.tqcontains( word ) ) { + if ( d->replaceAllMap.contains( word ) ) { d->ui->m_replacement->setText( d->replaceAllMap[ word ] ); slotReplaceWord(); } else { diff --git a/kspell2/ui/highlighter.cpp b/kspell2/ui/highlighter.cpp index a3c33d7ae..2d185462d 100644 --- a/kspell2/ui/highlighter.cpp +++ b/kspell2/ui/highlighter.cpp @@ -110,7 +110,7 @@ TQString Highlighter::currentLanguage() const void Highlighter::setCurrentLanguage( const TQString& lang ) { - if ( !d->dictCache.tqfind( lang ) ) { + if ( !d->dictCache.find( lang ) ) { Dictionary *dict = d->broker->dictionary( lang ); if ( dict ) { d->dictCache.insert( lang, dict ); |