From e7a91beccbd8dae8b2ad4200955b181e30dc11f0 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Fri, 28 Dec 2007 22:29:33 +0000 Subject: [PATCH] The 'Send Input to All' feature is not in good enough shape at this point to include in the release. This commit disables the code which creates the menu item for it. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754011 --- src/SessionController.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/SessionController.cpp b/src/SessionController.cpp index 12f2385bf..f60168e5a 100644 --- a/src/SessionController.cpp +++ b/src/SessionController.cpp @@ -454,9 +454,13 @@ void SessionController::setupActions() connect( action , SIGNAL(triggered()) , this , SLOT(renameSession()) ); // Send to All - toggleAction = new KToggleAction(i18n("Send Input to All"),this); - action = collection->addAction("send-input-to-all",toggleAction); - connect( action , SIGNAL(toggled(bool)) , this , SIGNAL(sendInputToAll(bool)) ); + + //TODO - Complete the implementation of 'Send Input to All' for + // a future KDE 4 release + // + //toggleAction = new KToggleAction(i18n("Send Input to All"),this); + //action = collection->addAction("send-input-to-all",toggleAction); + //connect( action , SIGNAL(toggled(bool)) , this , SIGNAL(sendInputToAll(bool)) ); // Clear and Clear+Reset action = collection->addAction("clear");