summaryrefslogtreecommitdiffstats
path: root/kaddressbook/common/filter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/common/filter.cpp')
-rw-r--r--kaddressbook/common/filter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kaddressbook/common/filter.cpp b/kaddressbook/common/filter.cpp
index e312fbcd..9b746430 100644
--- a/kaddressbook/common/filter.cpp
+++ b/kaddressbook/common/filter.cpp
@@ -61,9 +61,9 @@ bool Filter::isInternal() const
return mInternal;
}
-void Filter::apply( KABC::Addressee::List &addresseeList )
+void Filter::apply( TDEABC::Addressee::List &addresseeList )
{
- KABC::Addressee::List::Iterator iter;
+ TDEABC::Addressee::List::Iterator iter;
for ( iter = addresseeList.begin(); iter != addresseeList.end(); ) {
if ( filterAddressee( *iter ) )
++iter;
@@ -72,7 +72,7 @@ void Filter::apply( KABC::Addressee::List &addresseeList )
}
}
-bool Filter::filterAddressee( const KABC::Addressee &a ) const
+bool Filter::filterAddressee( const TDEABC::Addressee &a ) const
{
TQStringList::ConstIterator iter;
iter = mCategoryList.begin();