diff options
Diffstat (limited to 'x11/kde4-runtime/files/patch-kwin-tabbox.cpp')
-rw-r--r-- | x11/kde4-runtime/files/patch-kwin-tabbox.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/x11/kde4-runtime/files/patch-kwin-tabbox.cpp b/x11/kde4-runtime/files/patch-kwin-tabbox.cpp deleted file mode 100644 index 1254fc501ed8..000000000000 --- a/x11/kde4-runtime/files/patch-kwin-tabbox.cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- kwin/tabbox.cpp 2006/03/17 21:38:24 519807 -+++ kwin/tabbox.cpp 2006/04/03 13:05:18 525954 -@@ -1152,7 +1152,7 @@ - */ - Client* Workspace::nextFocusChainClient( Client* c ) const - { -- int desktop = c->isOnAllDesktops() ? currentDesktop() : c->desktop(); -+ int desktop = !c || c->isOnAllDesktops() ? currentDesktop() : c->desktop(); - if ( focus_chain[desktop].isEmpty() ) - return 0; - ClientList::ConstIterator it = focus_chain[desktop].find( c ); -@@ -1170,7 +1170,7 @@ - */ - Client* Workspace::previousFocusChainClient( Client* c ) const - { -- int desktop = c->isOnAllDesktops() ? currentDesktop() : c->desktop(); -+ int desktop = !c || c->isOnAllDesktops() ? currentDesktop() : c->desktop(); - if ( focus_chain[desktop].isEmpty() ) - return 0; - ClientList::ConstIterator it = focus_chain[desktop].find( c ); |