diff options
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/sfx2/fcontnr.hxx | 11 | ||||
-rw-r--r-- | sfx2/source/inc/sfxtypes.hxx | 15 |
2 files changed, 0 insertions, 26 deletions
diff --git a/sfx2/inc/sfx2/fcontnr.hxx b/sfx2/inc/sfx2/fcontnr.hxx index d588771aae3a..bbccde13cfde 100644 --- a/sfx2/inc/sfx2/fcontnr.hxx +++ b/sfx2/inc/sfx2/fcontnr.hxx @@ -76,17 +76,6 @@ public: { pWindow = pWin; } }; -class SfxFrameWindowFactory -{ - typedef SfxFrameWindow* (*FactoryFunc)( SfxFrame* pParent, const String& rName ); - FactoryFunc pFunc; - String aName; -public: - SfxFrameWindowFactory( FactoryFunc pFuncP, String aNameP ); - String GetURLWildCard() { return aName; } - FactoryFunc GetFactory() { return pFunc; } -}; - typedef sal_uIntPtr (*SfxDetectFilter)( SfxMedium& rMedium, const SfxFilter **, SfxFilterFlags nMust, SfxFilterFlags nDont ); class SFX2_DLLPUBLIC SfxFilterContainer diff --git a/sfx2/source/inc/sfxtypes.hxx b/sfx2/source/inc/sfxtypes.hxx index cb1aced2f087..1ecb2750c198 100644 --- a/sfx2/source/inc/sfxtypes.hxx +++ b/sfx2/source/inc/sfxtypes.hxx @@ -136,21 +136,6 @@ struct StringList_Impl : private Resource }; -class SfxBoolResetter -{ - sal_Bool& _rVar; - sal_Bool _bOld; - -public: - SfxBoolResetter( sal_Bool &rVar ) - : _rVar( rVar ), - _bOld( rVar ) - {} - - ~SfxBoolResetter() - { _rVar = _bOld; } -}; - #define GPF() *(int*)0 = 0 #endif // #ifndef _SFX_SFXTYPES_HXX |