diff options
author | Jim Raykowski <raykowj@gmail.com> | 2018-03-28 22:41:00 -0800 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2018-03-29 14:39:32 +0200 |
commit | 6c57ae39d783ae92a43dc2e113ea6e2dfb52af22 (patch) | |
tree | 99e9e9b3bc728af1c183ed6213b028e8eb5e54b6 /sfx2 | |
parent | df8b9faab91c4c093652be4f35c4b9bf29ecd0ed (diff) |
tdf#116680 fix sidebar can't undock
Change-Id: Ic3d198488de6d0420dbdb8fb7dbfb0335556e108
Reviewed-on: https://gerrit.libreoffice.org/52047
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/sidebar/SidebarDockingWindow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx b/sfx2/source/sidebar/SidebarDockingWindow.cxx index 097fd535e6fb..15a3e3340ff1 100644 --- a/sfx2/source/sidebar/SidebarDockingWindow.cxx +++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx @@ -116,7 +116,7 @@ bool SidebarDockingWindow::EventNotify(NotifyEvent& rEvent) if (MouseNotifyEvent::KEYINPUT == nType) return true; - return Window::EventNotify(rEvent); + return SfxDockingWindow::EventNotify(rEvent); } } } // end of namespace sfx2::sidebar |