diff options
Diffstat (limited to 'konqueror/konq_guiclients.cpp')
-rw-r--r-- | konqueror/konq_guiclients.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/konqueror/konq_guiclients.cpp b/konqueror/konq_guiclients.cpp index 31647b0c3..2e3703151 100644 --- a/konqueror/konq_guiclients.cpp +++ b/konqueror/konq_guiclients.cpp @@ -157,7 +157,7 @@ void PopupMenuGUIClient::addEmbeddingService( TQDomElement &menu, int idx, const action.setAttribute( "group", "preview" ); (void)new TDEAction( name, service->pixmap( TDEIcon::Small ), 0, - TQT_TQOBJECT(m_mainWindow), TQT_SLOT( slotOpenEmbedded() ), actionCollection(), actName ); + m_mainWindow, TQ_SLOT( slotOpenEmbedded() ), actionCollection(), actName ); } ToggleViewGUIClient::ToggleViewGUIClient( KonqMainWindow *mainWindow ) @@ -202,8 +202,8 @@ ToggleViewGUIClient::ToggleViewGUIClient( KonqMainWindow *mainWindow ) if ( (*cIt)->icon() != "unknown" ) action->setIcon( (*cIt)->icon() ); - connect( action, TQT_SIGNAL( toggled( bool ) ), - this, TQT_SLOT( slotToggleView( bool ) ) ); + connect( action, TQ_SIGNAL( toggled( bool ) ), + this, TQ_SLOT( slotToggleView( bool ) ) ); m_actions.insert( name, action ); @@ -212,10 +212,10 @@ ToggleViewGUIClient::ToggleViewGUIClient( KonqMainWindow *mainWindow ) m_mapOrientation.insert( name, horizontal ); } - connect( m_mainWindow, TQT_SIGNAL( viewAdded( KonqView * ) ), - this, TQT_SLOT( slotViewAdded( KonqView * ) ) ); - connect( m_mainWindow, TQT_SIGNAL( viewRemoved( KonqView * ) ), - this, TQT_SLOT( slotViewRemoved( KonqView * ) ) ); + connect( m_mainWindow, TQ_SIGNAL( viewAdded( KonqView * ) ), + this, TQ_SLOT( slotViewAdded( KonqView * ) ) ); + connect( m_mainWindow, TQ_SIGNAL( viewRemoved( KonqView * ) ), + this, TQ_SLOT( slotViewRemoved( KonqView * ) ) ); } ToggleViewGUIClient::~ToggleViewGUIClient() @@ -235,7 +235,7 @@ TQPtrList<TDEAction> ToggleViewGUIClient::actions() const void ToggleViewGUIClient::slotToggleView( bool toggle ) { - TQString serviceName = TQString::fromLatin1( TQT_TQOBJECT_CONST(sender())->name() ); + TQString serviceName = TQString::fromLatin1( sender()->name() ); bool horizontal = m_mapOrientation[ serviceName ]; @@ -244,7 +244,7 @@ void ToggleViewGUIClient::slotToggleView( bool toggle ) if ( toggle ) { - KonqView *childView = viewManager->splitWindow( horizontal ? Qt::Vertical : Qt::Horizontal, + KonqView *childView = viewManager->splitWindow( horizontal ? TQt::Vertical : TQt::Horizontal, TQString::fromLatin1( "Browser/View" ), serviceName, !horizontal /* vertical = make it first */); |