summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/PaneShells.hxx
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2014-04-18 18:04:32 +0200
committerJan Holesovsky <kendy@collabora.com>2014-04-18 22:51:06 +0200
commit29d5ce2d88732c12c986d3b7991897043a7be576 (patch)
treedc33c784246e411b5434e22f64f71a297358f59e /sd/source/ui/inc/PaneShells.hxx
parentb731d71c67b864b61f5c08e219140be59c473f53 (diff)
sfx2: Move InitInterface_Impl() out of SFX_DECL_INTERFACE too.
Change-Id: Ib737e0d1b5888986b308aa60d4140f65e4e90243
Diffstat (limited to 'sd/source/ui/inc/PaneShells.hxx')
-rw-r--r--sd/source/ui/inc/PaneShells.hxx22
1 files changed, 15 insertions, 7 deletions
diff --git a/sd/source/ui/inc/PaneShells.hxx b/sd/source/ui/inc/PaneShells.hxx
index 0dd1c55bcb4e..151a0a7de908 100644
--- a/sd/source/ui/inc/PaneShells.hxx
+++ b/sd/source/ui/inc/PaneShells.hxx
@@ -27,7 +27,6 @@
namespace sd {
-
/** Shell that displays the left pane for Impress. The shell does not do
anything else and has especially no slots.
*/
@@ -38,13 +37,15 @@ public:
TYPEINFO_OVERRIDE();
SFX_DECL_INTERFACE(SD_IF_SDLEFTIMPRESSPANESHELL)
+private:
+ /// SfxInterface initializer.
+ static void InitInterface_Impl();
+
+public:
LeftImpressPaneShell (void);
virtual ~LeftImpressPaneShell (void);
};
-
-
-
/** Shell that displays the left pane for Draw. The shell does not do
anything else and has especially no slots.
*/
@@ -55,13 +56,15 @@ public:
TYPEINFO_OVERRIDE();
SFX_DECL_INTERFACE(SD_IF_SDLEFTDRAWPANESHELL)
+private:
+ /// SfxInterface initializer.
+ static void InitInterface_Impl();
+
+public:
LeftDrawPaneShell (void);
virtual ~LeftDrawPaneShell (void);
};
-
-
-
/** Shell that displays the right pane for both Impress and Draw. The shell
does not do anything else and has especially no slots.
*/
@@ -71,6 +74,11 @@ public:
TYPEINFO_OVERRIDE();
SFX_DECL_INTERFACE( SD_IF_SDTOOLPANELPANESHELL )
+private:
+ /// SfxInterface initializer.
+ static void InitInterface_Impl();
+
+public:
ToolPanelPaneShell();
virtual ~ToolPanelPaneShell();
};