From 81efd8621dff76e4a70735d5f7e448feac58ba12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20W=C3=B6bbeking?= Date: Mon, 26 Jul 2010 16:35:51 +0000 Subject: [PATCH] forwardport r1147150 don't use deprecated signals svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1154986 --- src/ViewContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewContainer.cpp b/src/ViewContainer.cpp index 7a5ba6d3e..f8630bda9 100644 --- a/src/ViewContainer.cpp +++ b/src/ViewContainer.cpp @@ -470,7 +470,7 @@ TabbedViewContainer::TabbedViewContainer(NavigationPosition position , QObject* connect( _tabBar , SIGNAL(tabDoubleClicked(int)) , this , SLOT(tabDoubleClicked(int)) ); connect( _tabBar , SIGNAL(newTabRequest()) , this , SIGNAL(newViewRequest()) ); connect( _tabBar , SIGNAL(wheelDelta(int)) , this , SLOT(wheelScrolled(int)) ); - connect( _tabBar , SIGNAL(closeRequest(int)) , this , SLOT(closeTab(int)) ); + connect( _tabBar , SIGNAL(tabCloseRequested(int)) , this , SLOT(closeTab(int)) ); connect( _tabBar , SIGNAL(initiateDrag(int)) , this , SLOT(startTabDrag(int)) ); connect( _tabBar, SIGNAL(contextMenu(int, const QPoint&)), this, SLOT(openTabContextMenu(int, const QPoint&)) );