diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 10:53:25 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 10:53:25 -0600 |
commit | da1941ccadffe5ae70ee111c53f0ec2b3d990869 (patch) | |
tree | ee683f46b49e6abdbdef78ed45ca65b47538bc23 /parts/partexplorer/partexplorerform.cpp | |
parent | 054f5901ab09f6ea6235bd12fbd167922fdf0f67 (diff) | |
download | tdevelop-da1941ccadffe5ae70ee111c53f0ec2b3d990869.tar.gz tdevelop-da1941ccadffe5ae70ee111c53f0ec2b3d990869.zip |
Rename KLock and KTrader to avoid conflicts with KDE4
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); |