summaryrefslogtreecommitdiffstats
path: root/sfx2/source/control/macro.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/control/macro.cxx')
-rw-r--r--sfx2/source/control/macro.cxx48
1 files changed, 0 insertions, 48 deletions
diff --git a/sfx2/source/control/macro.cxx b/sfx2/source/control/macro.cxx
index 401604271c76..a9f979858f59 100644
--- a/sfx2/source/control/macro.cxx
+++ b/sfx2/source/control/macro.cxx
@@ -349,52 +349,4 @@ void SfxMacroStatement::GenerateNameAndArgs_Impl
aStatement.InsertAscii( "rem ", 0 );
}
-//--------------------------------------------------------------------
-
-SfxMacro::SfxMacro
-(
- SfxMacroMode eMode // Purpose of the instance, see <SfxMacroMode>
-)
-
-/* [Description]
-
- Constructor of the SfxMacro class. Instances of this class are required
- for two purposes in SFx:
-
- 1. for recording macros
- In this cas is th constructor called with SFX_MACRO_RECORDINGABSOLUTE or
- SFX_MACRO_RECORDINGRELATIVE. Should be an instance of a derived class,
- in order to acommodate the derivation of information, where the macro
- should be saved. Such a macro should, in its destructor, be saved at the
- location specified by the user.
-
- 2. Assignment of exisiting macros
- In this case the constructor is called with SFX_MACRO_EXISTING.
- Such a instance is for example needed when macros are to be configured for
- events or <SfxControllerItem>s.
-*/
-
-: pImp( new SfxMacro_Impl )
-
-{
- pImp->eMode = eMode;
-}
-
-//--------------------------------------------------------------------
-
-SfxMacro::~SfxMacro()
-
-/* [Description]
-
- Virtual Destructor of the SfxMacro class. This should be overloaded in
- the derived classes to save the recorded source in the mode
- SFX_MACRO_RECORDINGABSOLUTE and SFX_MACRO_RECORDINGRELATIVE.
-*/
-
-{
- delete pImp;
-}
-
-//--------------------------------------------------------------------
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */