summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndre Fischer <af@apache.org>2013-05-17 08:56:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-05-20 15:02:38 +0100
commitc6e576da95074215d1dcfbcc4b7c4fad6cdeb27c (patch)
tree7d53362fea92636c1fca479bbd7a45b60edf00fc /vcl
parent05b2cd081452571dde558b5376d0db41f9049ab4 (diff)
Resolves: #i122329# Disable undocking of stylist in the sidebar
(cherry picked from commit 8dc875f17c0cdd41e7ba6ad2f4c1ea3bda1a8be2) Change-Id: I1a19135d3496463c8759e341449fa51d389fa264 (cherry picked from commit 048eca411083bc8a2ef95e5701bf7eba5d232a2d)
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/dockwin.cxx15
1 files changed, 12 insertions, 3 deletions
diff --git a/vcl/source/window/dockwin.cxx b/vcl/source/window/dockwin.cxx
index 2ee2f4834144..42954e6a14bb 100644
--- a/vcl/source/window/dockwin.cxx
+++ b/vcl/source/window/dockwin.cxx
@@ -755,10 +755,19 @@ void DockingWindow::Resizing( Size& )
void DockingWindow::StateChanged( StateChangedType nType )
{
- if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
+ switch(nType)
{
- ImplInitSettings();
- Invalidate();
+ case STATE_CHANGE_CONTROLBACKGROUND:
+ ImplInitSettings();
+ Invalidate();
+ break;
+
+ case STATE_CHANGE_STYLE:
+ mbDockable = (GetStyle() & WB_DOCKABLE) != 0;
+ break;
+
+ default:
+ break;
}
Window::StateChanged( nType );