summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-05-20 17:35:21 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-05-20 19:44:24 +0900
commit61719b1781b6147dcfa7278f44c9b910d9ab1286 (patch)
tree513f871500e09d74a9aef455dcbffa8028874bea /sfx2
parentd0f20c37747e9eaaae7642ce017a53b1f3e4b5a6 (diff)
SidebarDockingWindow - cleanup
Change-Id: Ief8fb3aa0a39082598c3d488a758416604a3991a
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/sidebar/SidebarDockingWindow.cxx11
-rw-r--r--sfx2/source/sidebar/SidebarDockingWindow.hxx10
2 files changed, 7 insertions, 14 deletions
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.cxx b/sfx2/source/sidebar/SidebarDockingWindow.cxx
index 7c9a150aeb79..2cc2ae76843d 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.cxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.cxx
@@ -29,13 +29,10 @@ using namespace css::uno;
namespace sfx2 { namespace sidebar {
-SidebarDockingWindow::SidebarDockingWindow(
- SfxBindings* pSfxBindings,
- SidebarChildWindow& rChildWindow,
- vcl::Window* pParentWindow,
- WinBits nBits)
- : SfxDockingWindow(pSfxBindings, &rChildWindow, pParentWindow, nBits),
- mpSidebarController()
+SidebarDockingWindow::SidebarDockingWindow(SfxBindings* pSfxBindings, SidebarChildWindow& rChildWindow,
+ vcl::Window* pParentWindow, WinBits nBits)
+ : SfxDockingWindow(pSfxBindings, &rChildWindow, pParentWindow, nBits)
+ , mpSidebarController()
{
// Get the XFrame from the bindings.
if (pSfxBindings==NULL || pSfxBindings->GetDispatcher()==NULL)
diff --git a/sfx2/source/sidebar/SidebarDockingWindow.hxx b/sfx2/source/sidebar/SidebarDockingWindow.hxx
index fd45c691842d..defbb17315e2 100644
--- a/sfx2/source/sidebar/SidebarDockingWindow.hxx
+++ b/sfx2/source/sidebar/SidebarDockingWindow.hxx
@@ -29,15 +29,11 @@ class SidebarChildWindow;
class SidebarController;
-class SidebarDockingWindow
- : public SfxDockingWindow
+class SidebarDockingWindow : public SfxDockingWindow
{
public:
- SidebarDockingWindow(
- SfxBindings* pBindings,
- SidebarChildWindow& rChildWindow,
- vcl::Window* pParent,
- WinBits nBits);
+ SidebarDockingWindow(SfxBindings* pBindings, SidebarChildWindow& rChildWindow,
+ vcl::Window* pParent, WinBits nBits);
virtual ~SidebarDockingWindow();
virtual void dispose() SAL_OVERRIDE;