Forgot to connect.
=================================================================== RCS file: /home/kde/kdebase/kwin/workspace.cpp,v retrieving revision 1.258 diff -u -3 -d -p -r1.258 workspace.cpp --- workspace.cpp 2001/06/13 15:47:54 1.258 +++ workspace.cpp 2001/06/13 18:46:54 @@ -2562,6 +2562,8 @@ void Workspace::createKeybindings(){ keys->connectItem( "Walk through desktops", this, SLOT( slotWalkThroughDesktops())); keys->connectItem( "Walk back through desktops", this, SLOT( slotWalkBackThroughDesktops())); + keys->connectItem( "Walk through desktop list", this, SLOT( slotWalkThroughDesktopList())); + keys->connectItem( "Walk back through desktop list", this, SLOT( slotWalkBackThroughDesktopList())); keys->connectItem( "Walk through windows",this, SLOT( slotWalkThroughWindows())); keys->connectItem( "Walk back through windows",this, SLOT( slotWalkBackThroughWindows())); @@ -2571,6 +2573,8 @@ void Workspace::createKeybindings(){ keys->readSettings(); walkThroughDesktopsKeycode = keys->currentKey( "Walk through desktops" ); walkBackThroughDesktopsKeycode = keys->currentKey( "Walk back through desktops" ); + walkThroughDesktopListKeycode = keys->currentKey( "Walk through desktop list" ); + walkBackThroughDesktopListKeycode = keys->currentKey( "Walk back through desktop list" ); walkThroughWindowsKeycode = keys->currentKey( "Walk through windows" ); walkBackThroughWindowsKeycode = keys->currentKey( "Walk back through windows" ); } svn path=/trunk/kdebase/kwin/; revision=101992
This commit is contained in:
parent
0827825fcb
commit
c77c63a6d3
1 changed files with 4 additions and 0 deletions
|
@ -2562,6 +2562,8 @@ void Workspace::createKeybindings(){
|
|||
|
||||
keys->connectItem( "Walk through desktops", this, SLOT( slotWalkThroughDesktops()));
|
||||
keys->connectItem( "Walk back through desktops", this, SLOT( slotWalkBackThroughDesktops()));
|
||||
keys->connectItem( "Walk through desktop list", this, SLOT( slotWalkThroughDesktopList()));
|
||||
keys->connectItem( "Walk back through desktop list", this, SLOT( slotWalkBackThroughDesktopList()));
|
||||
keys->connectItem( "Walk through windows",this, SLOT( slotWalkThroughWindows()));
|
||||
keys->connectItem( "Walk back through windows",this, SLOT( slotWalkBackThroughWindows()));
|
||||
|
||||
|
@ -2571,6 +2573,8 @@ void Workspace::createKeybindings(){
|
|||
keys->readSettings();
|
||||
walkThroughDesktopsKeycode = keys->currentKey( "Walk through desktops" );
|
||||
walkBackThroughDesktopsKeycode = keys->currentKey( "Walk back through desktops" );
|
||||
walkThroughDesktopListKeycode = keys->currentKey( "Walk through desktop list" );
|
||||
walkBackThroughDesktopListKeycode = keys->currentKey( "Walk back through desktop list" );
|
||||
walkThroughWindowsKeycode = keys->currentKey( "Walk through windows" );
|
||||
walkBackThroughWindowsKeycode = keys->currentKey( "Walk back through windows" );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue