diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 10:52:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 10:52:50 -0600 |
commit | 0117fbed932653a04aeef16b2ed7edee858959ac (patch) | |
tree | 769ae82d3aec3a66184bd33b65843380b5265fbb /cervisia | |
parent | 087f8d4521b0bc6614dc4b664b23674a7f5f5020 (diff) | |
download | tdesdk-0117fbed932653a04aeef16b2ed7edee858959ac.tar.gz tdesdk-0117fbed932653a04aeef16b2ed7edee858959ac.zip |
Rename KLock and KTrader to avoid conflicts with KDE4
Diffstat (limited to 'cervisia')
-rw-r--r-- | cervisia/editwithmenu.cpp | 4 | ||||
-rw-r--r-- | cervisia/editwithmenu.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/cervisia/editwithmenu.cpp b/cervisia/editwithmenu.cpp index d7d1044a..6be3a85e 100644 --- a/cervisia/editwithmenu.cpp +++ b/cervisia/editwithmenu.cpp @@ -39,13 +39,13 @@ EditWithMenu::EditWithMenu(const KURL& url, TQWidget* parent) return; } - m_offers = KTrader::self()->query(type->name(), "Type == 'Application'"); + m_offers = TDETrader::self()->query(type->name(), "Type == 'Application'"); if( !m_offers.isEmpty() ) { m_menu = new TQPopupMenu(); - KTrader::OfferList::ConstIterator it = m_offers.begin(); + TDETrader::OfferList::ConstIterator it = m_offers.begin(); for( int i = 0 ; it != m_offers.end(); ++it, ++i ) { int id = m_menu->insertItem(SmallIcon((*it)->icon()), diff --git a/cervisia/editwithmenu.h b/cervisia/editwithmenu.h index 9961b61f..1f2b1b7b 100644 --- a/cervisia/editwithmenu.h +++ b/cervisia/editwithmenu.h @@ -43,7 +43,7 @@ private slots: void itemActivated(int); private: - KTrader::OfferList m_offers; + TDETrader::OfferList m_offers; TQPopupMenu* m_menu; KURL m_url; }; |