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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kbabel/kbabel/kbhighlighting.cpp b/kbabel/kbabel/kbhighlighting.cpp
index deaaf704..0240153d 100644
--- a/kbabel/kbabel/kbhighlighting.cpp
+++ b/kbabel/kbabel/kbhighlighting.cpp
@@ -44,7 +44,7 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kbabelsettings.h>
-#include <kspell.h>
+#include <tdespell.h>
#include "kbhighlighting.h"
#include "resources.h"
@@ -255,7 +255,7 @@ bool KBabelHighlighter::isMisspelled(const TQString& wordRaw)
kdDebug(KBABEL) << "isMisspelled: checking: " << word << endl;
// Normally isMisspelled would look up a dictionary and return
- // true or false, but kspell is asynchronous and slow so things
+ // true or false, but tdespell is asynchronous and slow so things
// get tricky...
// "dict" is used as a cache to store the results of KSpell
@@ -277,7 +277,7 @@ void KBabelHighlighter::slotMisspelling(const TQString & originalword,
kdDebug(KBABEL) << "Misspelled " << originalword << ", " << suggestions << endl;
dict.replace( originalword, NotOkay );
- // this is slow but since kspell is async this will have to do for now
+ // this is slow but since tdespell is async this will have to do for now
highlight();
}