summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_mainwindow.cc
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 10:49:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 10:49:49 -0600
commitdc5f267664506a312203c26bfe9001a448b0bb0f (patch)
treea78c7f15e87303d22b89619db42fc56ad8f4a046 /konqueror/konq_mainwindow.cc
parent98f4a055baf6eb7ea5c3d69d6a3f2162b491e253 (diff)
downloadtdebase-dc5f267664506a312203c26bfe9001a448b0bb0f.tar.gz
tdebase-dc5f267664506a312203c26bfe9001a448b0bb0f.zip
Rename KLock and KTrader to avoid conflicts with KDE4
Diffstat (limited to 'konqueror/konq_mainwindow.cc')
-rw-r--r--konqueror/konq_mainwindow.cc26
1 files changed, 13 insertions, 13 deletions
diff --git a/konqueror/konq_mainwindow.cc b/konqueror/konq_mainwindow.cc
index 5ad4c6eae..0f3aeeb5e 100644
--- a/konqueror/konq_mainwindow.cc
+++ b/konqueror/konq_mainwindow.cc
@@ -1571,9 +1571,9 @@ void KonqMainWindow::slotOpenWith()
TQString serviceName = TQT_TQOBJECT_CONST(sender())->name();
- KTrader::OfferList offers = m_currentView->appServiceOffers();
- KTrader::OfferList::ConstIterator it = offers.begin();
- KTrader::OfferList::ConstIterator end = offers.end();
+ TDETrader::OfferList offers = m_currentView->appServiceOffers();
+ TDETrader::OfferList::ConstIterator it = offers.begin();
+ TDETrader::OfferList::ConstIterator end = offers.end();
for (; it != end; ++it )
if ( (*it)->desktopEntryName() == serviceName )
{
@@ -1615,9 +1615,9 @@ void KonqMainWindow::slotViewModeToggle( bool toggle )
// iterate over all services, update the toolbar service map
// and check if we can do a quick property-based viewmode change
- const KTrader::OfferList offers = m_currentView->partServiceOffers();
- KTrader::OfferList::ConstIterator oIt = offers.begin();
- KTrader::OfferList::ConstIterator oEnd = offers.end();
+ const TDETrader::OfferList offers = m_currentView->partServiceOffers();
+ TDETrader::OfferList::ConstIterator oIt = offers.begin();
+ TDETrader::OfferList::ConstIterator oEnd = offers.end();
const TQString currentServiceKey = viewModeActionKey( m_currentView->service() );
for (; oIt != oEnd; ++oIt )
{
@@ -4725,7 +4725,7 @@ void KonqMainWindow::slotPopupMenu( KXMLGUIClient *client, const TQPoint &_globa
TQString currentServiceName = currentView->service()->desktopEntryName();
// List of services for the "Preview In" submenu.
- m_popupEmbeddingServices = KTrader::self()->query(
+ m_popupEmbeddingServices = TDETrader::self()->query(
m_popupServiceType,
"KParts/ReadOnlyPart",
// Obey "HideFromMenus". It defaults to false so we want "absent or true"
@@ -5032,9 +5032,9 @@ void KonqMainWindow::updateOpenWithActions()
if (!kapp->authorizeKAction("openwith"))
return;
- const KTrader::OfferList & services = m_currentView->appServiceOffers();
- KTrader::OfferList::ConstIterator it = services.begin();
- KTrader::OfferList::ConstIterator end = services.end();
+ const TDETrader::OfferList & services = m_currentView->appServiceOffers();
+ TDETrader::OfferList::ConstIterator it = services.begin();
+ TDETrader::OfferList::ConstIterator end = services.end();
for (; it != end; ++it )
{
KAction *action = new KAction( i18n( "Open with %1" ).arg( (*it)->name() ), 0, 0, (*it)->desktopEntryName().latin1() );
@@ -5089,7 +5089,7 @@ void KonqMainWindow::updateViewModeActions()
m_viewModeToolBarServices.clear();
}
- KTrader::OfferList services = m_currentView->partServiceOffers();
+ TDETrader::OfferList services = m_currentView->partServiceOffers();
if ( services.count() <= 1 )
return;
@@ -5110,8 +5110,8 @@ void KonqMainWindow::updateViewModeActions()
TDEConfig * config = TDEGlobal::config();
config->setGroup( "ModeToolBarServices" );
- KTrader::OfferList::ConstIterator it = services.begin();
- KTrader::OfferList::ConstIterator end = services.end();
+ TDETrader::OfferList::ConstIterator it = services.begin();
+ TDETrader::OfferList::ConstIterator end = services.end();
for (; it != end; ++it )
{
TQVariant prop = (*it)->property( "X-TDE-BrowserView-Toggable" );