diff options
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/document.hxx | 6 | ||||
-rw-r--r-- | starmath/inc/smmod.hxx | 7 | ||||
-rw-r--r-- | starmath/inc/view.hxx | 5 |
3 files changed, 16 insertions, 2 deletions
diff --git a/starmath/inc/document.hxx b/starmath/inc/document.hxx index a32520156ad1..eba196d161e1 100644 --- a/starmath/inc/document.hxx +++ b/starmath/inc/document.hxx @@ -156,9 +156,15 @@ class SmDocShell : public SfxObjectShell, public SfxListener public: TYPEINFO_OVERRIDE(); SFX_DECL_INTERFACE(SFX_INTERFACE_SMA_START+1) + using SotObject::GetInterface; SFX_DECL_OBJECTFACTORY(); +private: + /// SfxInterface initializer. + static void InitInterface_Impl(); + +public: SmDocShell( const sal_uInt64 i_nSfxCreationFlags ); virtual ~SmDocShell(); diff --git a/starmath/inc/smmod.hxx b/starmath/inc/smmod.hxx index aa3540602650..b3af03d781e0 100644 --- a/starmath/inc/smmod.hxx +++ b/starmath/inc/smmod.hxx @@ -84,8 +84,6 @@ public: const OUString GetExportSymbolSetName( const OUString &rUiName ) const; }; - - class SmModule : public SfxModule, utl::ConfigurationListener { svtools::ColorConfig *pColorConfig; @@ -103,6 +101,11 @@ public: TYPEINFO_OVERRIDE(); SFX_DECL_INTERFACE(SFX_INTERFACE_SMA_START + 0) +private: + /// SfxInterface initializer. + static void InitInterface_Impl(); + +public: SmModule(SfxObjectFactory* pObjFact); virtual ~SmModule(); diff --git a/starmath/inc/view.hxx b/starmath/inc/view.hxx index 1f35a4b286d6..9c7980609250 100644 --- a/starmath/inc/view.hxx +++ b/starmath/inc/view.hxx @@ -298,6 +298,11 @@ public: SFX_DECL_INTERFACE(SFX_INTERFACE_SMA_START+2) SFX_DECL_VIEWFACTORY(SmViewShell); +private: + /// SfxInterface initializer. + static void InitInterface_Impl(); + +public: virtual void Execute( SfxRequest& rReq ); virtual void GetState(SfxItemSet &); |