diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-21 11:04:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-21 21:29:25 +0200 |
commit | d5329c153149d29b25f1ec9d19ada8b62e350b6d (patch) | |
tree | 093ff947bec6a93907d399ea7fbbaf89509d1347 /vcl | |
parent | 8638951d73bdaed7f8a9052c94a9463a6779e909 (diff) |
WB_FORCETABCYCLE is dead
since
commit 7ced337e1f0e1fae81ff7f196e59e558b729bdde
Date: Tue Jun 18 16:59:27 2013 +0200
startcenter: GSOC Use Widget Layout for the Start Center
Change-Id: I406059568f15500a21a1b41d3a4b8e12b2adb5cf
Reviewed-on: https://gerrit.libreoffice.org/41385
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/toolbox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index 26579b2ddf98..810c589a8333 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -3962,7 +3962,7 @@ bool ToolBox::EventNotify( NotifyEvent& rNEvt ) pParent->GetChildCount() != 1); bool bNoTabCycling = bOldSchoolContainer || isContainerWindow(pParent); - if( bNoTabCycling && ! (GetStyle() & WB_FORCETABCYCLE) ) + if( bNoTabCycling ) return DockingWindow::EventNotify( rNEvt ); else if( ImplChangeHighlightUpDn( aKeyCode.IsShift() , bNoTabCycling ) ) return false; |