diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 17:59:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-07 17:59:05 -0600 |
commit | d9d612c4a178511357ce335ed8790ab78d822d33 (patch) | |
tree | a71db1d95ac1b9a92f39ce0f401b46d0b2f4c979 /lib | |
parent | 28cd5374ba94ff81d3dd63765232b142038a4dbb (diff) | |
download | tdevelop-d9d612c4a178511357ce335ed8790ab78d822d33.tar.gz tdevelop-d9d612c4a178511357ce335ed8790ab78d822d33.zip |
Rename KComp to avoid conflicts with KDE4
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/kcomboview.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/widgets/kcomboview.h b/lib/widgets/kcomboview.h index 8a72e5e8..f808c29c 100644 --- a/lib/widgets/kcomboview.h +++ b/lib/widgets/kcomboview.h @@ -35,19 +35,19 @@ KComboView provides text completion. */ -///This can be used to insert own KCompletion-implementations -class CustomCompleter : public KCompletion { +///This can be used to insert own TDECompletion-implementations +class CustomCompleter : public TDECompletion { public: virtual void addItem (const TQString &item) { - KCompletion::addItem( item ); + TDECompletion::addItem( item ); } virtual void removeItem (const TQString &item) { - KCompletion::removeItem( item ); + TDECompletion::removeItem( item ); } virtual void clear() { - KCompletion::clear(); + TDECompletion::clear(); } }; |