Rename KComp to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent aa049a28e9
commit 312fe5fc29

@ -26,7 +26,7 @@ private:
bool wordsToSave;
};
WordCompletion::WordCompletion() : KCompletion () {
WordCompletion::WordCompletion() : TDECompletion () {
d = new WordCompletionPrivate();
d->blockCurrentListSignal = false;
d->wordsToSave = false;
@ -44,7 +44,7 @@ typedef TQValueList<Match> MatchList;
TQString WordCompletion::makeCompletion(const TQString &text) {
if (d->lastText != text) {
d->lastText = text;
KCompletion::clear();
TDECompletion::clear();
int border = text.findRev(TQRegExp("\\W"));
TQString suffix = text.right (text.length() - border - 1).lower();
@ -61,13 +61,13 @@ TQString WordCompletion::makeCompletion(const TQString &text) {
MatchList::ConstIterator iter = matches.begin();
for (int count = 0; (iter != matches.end()) && (count < 10); ++iter, ++count) {
int length = (*iter).second.length() + prefix.length() - text.length();
KCompletion::addItem(text + (*iter).second.right(length), -(*iter).first);
TDECompletion::addItem(text + (*iter).second.right(length), -(*iter).first);
}
}
}
// call the KCompletion::makeCompletion(...) method
return KCompletion::makeCompletion (text);
// call the TDECompletion::makeCompletion(...) method
return TDECompletion::makeCompletion (text);
}
TQStringList WordCompletion::wordLists() {

@ -6,7 +6,7 @@
/**
* This class does completion based on a dictionary of words.
*/
class WordCompletion : public KCompletion {
class WordCompletion : public TDECompletion {
friend class WordListWidget;
Q_OBJECT

Loading…
Cancel
Save