diff options
author | Jan Holesovsky <kendy@collabora.com> | 2014-04-18 18:04:32 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-04-18 22:51:06 +0200 |
commit | 29d5ce2d88732c12c986d3b7991897043a7be576 (patch) | |
tree | dc33c784246e411b5434e22f64f71a297358f59e /basctl | |
parent | b731d71c67b864b61f5c08e219140be59c473f53 (diff) |
sfx2: Move InitInterface_Impl() out of SFX_DECL_INTERFACE too.
Change-Id: Ib737e0d1b5888986b308aa60d4140f65e4e90243
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/basdoc.hxx | 6 | ||||
-rw-r--r-- | basctl/source/inc/basidesh.hxx | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/basctl/source/basicide/basdoc.hxx b/basctl/source/basicide/basdoc.hxx index baf7a48a119c..4921e70c4549 100644 --- a/basctl/source/basicide/basdoc.hxx +++ b/basctl/source/basicide/basdoc.hxx @@ -53,6 +53,12 @@ public: using SotObject::GetInterface; SFX_DECL_OBJECTFACTORY(); SFX_DECL_INTERFACE( SVX_INTERFACE_BASIDE_DOCSH ) + +private: + /// SfxInterface initializer. + static void InitInterface_Impl(); + +public: DocShell(); virtual ~DocShell(); diff --git a/basctl/source/inc/basidesh.hxx b/basctl/source/inc/basidesh.hxx index fa5d4c65c3ac..97d1ac851268 100644 --- a/basctl/source/inc/basidesh.hxx +++ b/basctl/source/inc/basidesh.hxx @@ -152,6 +152,11 @@ public: SFX_DECL_INTERFACE( SVX_INTERFACE_BASIDE_VIEWSH ) SFX_DECL_VIEWFACTORY(Shell); +private: + /// SfxInterface initializer. + static void InitInterface_Impl(); + +public: Shell( SfxViewFrame *pFrame, SfxViewShell *pOldSh ); virtual ~Shell(); |