diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-08-01 18:34:24 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-08-01 18:34:46 +0200 |
commit | 791071825969a40a454ed2b9806ec8b5c3b08fe9 (patch) | |
tree | 9fee331088d043e2995f0c5b5e7f1c69701dce49 /sfx2 | |
parent | 23e5bb66436991d809d8d807f27d25f922fb062f (diff) |
Remove unused code: those classes are unused
Change-Id: Ibf41655d40c9534629bbb0dd5ae600791b42922d
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 |