diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:14:14 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:14:14 -0600 |
commit | ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d (patch) | |
tree | 20f26768274e8db3212123cf1991ec916f01d0cb /systemsettings/kcmsearch.cpp | |
parent | 46164d2bf7219e6db2daf81d76cf45301d97c10f (diff) | |
download | tde-systemsettings-ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d.tar.gz tde-systemsettings-ae3203e4a4717c90e6364c5a66a0d9a5dd5b7c4d.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'systemsettings/kcmsearch.cpp')
-rw-r--r-- | systemsettings/kcmsearch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systemsettings/kcmsearch.cpp b/systemsettings/kcmsearch.cpp index 8cfb319..ac97647 100644 --- a/systemsettings/kcmsearch.cpp +++ b/systemsettings/kcmsearch.cpp @@ -62,7 +62,7 @@ void KcmSearch::updateSearch( const TQString &search ) { delete[] hitArray; } -bool KcmSearch::itemMatches( const KCModuleInfo &module, const TQString &search ) const +bool KcmSearch::itemMatches( const TDECModuleInfo &module, const TQString &search ) const { // Look in keywords TQStringList kw = module.keywords(); @@ -89,7 +89,7 @@ bool KcmSearch::itemMatches( const TQIconViewItem *item, const TQString & search return false; ModuleIconItem *mItem = (ModuleIconItem*)item; - TQValueList<KCModuleInfo>::iterator it; + TQValueList<TDECModuleInfo>::iterator it; for ( it = mItem->modules.begin(); it != mItem->modules.end(); ++it ){ if( itemMatches( (*it), search ) ) return true; |