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
This commit is contained in:
Robert Knight
2007-12-28 22:29:33 +00:00
parent 70e244df35
commit e7a91beccb

View File

@@ -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");