diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-09 16:44:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-09 16:44:20 +0200 |
commit | b43ffeb8286ceb79a6142876342c5affe39df333 (patch) | |
tree | 3e076ff393561f7f34231fb9b69daca3305a7d71 | |
parent | 57abbae632071326bf5f949cdbe1c76768509996 (diff) |
Remove unused MacroOrganizer
Change-Id: I637e84ae7fa82f687eb3f05b3e24e236f0ba8e3c
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index 53250ba11738..0fa9242c6b4f 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -873,27 +873,6 @@ OUString ChooseMacro( const Reference< XModel >& rxLimitToDocument, bool bChoose #endif } -void MacroOrganizer( sal_Int16 nTabId ) -{ -#ifndef DISABLE_DYNLOADING - // get basctl dllname - static OUString aLibName( SVLIBRARY( "basctl" ) ); - - // load module - oslModule handleMod = osl_loadModuleRelative( - &thisModule, aLibName.pData, 0 ); - - // get symbol - OUString aSymbol( "basicide_macro_organizer" ); - basicide_macro_organizer pSymbol = (basicide_macro_organizer) osl_getFunctionSymbol( handleMod, aSymbol.pData ); - // call basicide_macro_organizer in basctl - pSymbol( nTabId ); -#else - basicide_macro_organizer( nTabId ); -#endif - -} - #endif |