From d9d612c4a178511357ce335ed8790ab78d822d33 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 7 Feb 2013 17:59:05 -0600 Subject: Rename KComp to avoid conflicts with KDE4 --- parts/classview/classviewpart.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'parts/classview') diff --git a/parts/classview/classviewpart.cpp b/parts/classview/classviewpart.cpp index 80e3e8c4..3bff2daf 100644 --- a/parts/classview/classviewpart.cpp +++ b/parts/classview/classviewpart.cpp @@ -88,7 +88,7 @@ class FunctionCompletion : public CustomCompleter { virtual void addItem ( const TQString &item ) { TQString newItemName = item; - KCompletion::addItem(newItemName); + TDECompletion::addItem(newItemName); TQString tx = processName( item ); tx += " \"" + item + "\""; nameMap[item] = tx; @@ -96,16 +96,16 @@ class FunctionCompletion : public CustomCompleter { if(tx.length() == 0) { kdDebug() << "function-name-extraction failed with \"" << item << "\"" << endl; }else{ - KCompletion::addItem( tx ); + TDECompletion::addItem( tx ); kdDebug() << "addding \"" << item << "\" as \"" << tx << "\"" << endl; } - KCompletion::addItem( item ); + TDECompletion::addItem( item ); } virtual void removeItem ( const TQString &item ) { FuncMap::iterator it = nameMap.find( item ); if( it != nameMap.end() ) { - KCompletion::removeItem( *it ); + TDECompletion::removeItem( *it ); revNameMap.remove( *it ); nameMap.remove( it ); } @@ -114,7 +114,7 @@ class FunctionCompletion : public CustomCompleter { virtual void clear() { nameMap.clear(); revNameMap.clear(); - KCompletion::clear(); + TDECompletion::clear(); } virtual void postProcessMatch ( TQString *match ) const { @@ -133,7 +133,7 @@ class FunctionCompletion : public CustomCompleter { } } - virtual void postProcessMatches ( KCompletionMatches *matches ) const { + virtual void postProcessMatches ( TDECompletionMatches *matches ) const { } }; -- cgit v1.2.3