diff options
Diffstat (limited to 'parts/partexplorer/partexplorerform.cpp')
-rw-r--r-- | parts/partexplorer/partexplorerform.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/parts/partexplorer/partexplorerform.cpp b/parts/partexplorer/partexplorerform.cpp index 5a24c2ea..b7e970cf 100644 --- a/parts/partexplorer/partexplorerform.cpp +++ b/parts/partexplorer/partexplorerform.cpp @@ -168,7 +168,7 @@ void PartExplorerForm::slotSearchRequested() " serviceType = " << serviceType << ", constraints = " << constraints << endl; // Query for requested services - KTrader::OfferList foundServices = KTrader::self()->query( serviceType, constraints ); + TDETrader::OfferList foundServices = TDETrader::self()->query( serviceType, constraints ); fillServiceList( foundServices ); } @@ -185,7 +185,7 @@ void PartExplorerForm::slotDisplayError( TQString errorMessage ) /////////////////////////////////////////////////////////////////////////////// -void PartExplorerForm::fillServiceList( const KTrader::OfferList &services ) +void PartExplorerForm::fillServiceList( const TDETrader::OfferList &services ) { this->m_resultsList->clear(); @@ -199,7 +199,7 @@ void PartExplorerForm::fillServiceList( const KTrader::OfferList &services ) KListViewItem *rootItem = 0; - KTrader::OfferList::ConstIterator it = services.begin(); + TDETrader::OfferList::ConstIterator it = services.begin(); for ( ; it != services.end(); ++it ) { KService::Ptr service = (*it); |