diff options
Diffstat (limited to 'oox/source/ole/vbaproject.cxx')
-rw-r--r-- | oox/source/ole/vbaproject.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/oox/source/ole/vbaproject.cxx b/oox/source/ole/vbaproject.cxx index 99f07c5e88af..6bffdd7a20ee 100644 --- a/oox/source/ole/vbaproject.cxx +++ b/oox/source/ole/vbaproject.cxx @@ -47,8 +47,6 @@ namespace oox { namespace ole { - - using namespace ::com::sun::star::container; using namespace ::com::sun::star::document; using namespace ::com::sun::star::embed; @@ -61,8 +59,6 @@ using namespace ::com::sun::star::uno; using ::comphelper::ConfigurationHelper; - - namespace { bool lclReadConfigItem( const Reference< XInterface >& rxConfigAccess, const OUString& rItemName ) @@ -81,8 +77,6 @@ bool lclReadConfigItem( const Reference< XInterface >& rxConfigAccess, const OUS } // namespace - - VbaFilterConfig::VbaFilterConfig( const Reference< XComponentContext >& rxContext, const OUString& rConfigCompName ) { OSL_ENSURE( rxContext.is(), "VbaFilterConfig::VbaFilterConfig - missing component context" ); @@ -117,8 +111,6 @@ bool VbaFilterConfig::isExportVba() const return lclReadConfigItem( mxConfigAccess, "Save" ); } - - VbaMacroAttacherBase::VbaMacroAttacherBase( const OUString& rMacroName ) : maMacroName( rMacroName ) { @@ -140,8 +132,6 @@ void VbaMacroAttacherBase::resolveAndAttachMacro( const Reference< XVBAMacroReso } } - - VbaProject::VbaProject( const Reference< XComponentContext >& rxContext, const Reference< XModel >& rxDocModel, const OUString& rConfigCompName ) : VbaFilterConfig( rxContext, rConfigCompName ), @@ -157,7 +147,6 @@ VbaProject::~VbaProject() { } - bool VbaProject::importVbaProject( StorageBase& rVbaPrjStrg ) { // create GraphicHelper @@ -294,7 +283,6 @@ void VbaProject::readVbaModules( StorageBase& rVbaPrjStrg ) sal_uInt16 nModuleCount = 0; bool bExecutable = isImportVbaExecutable(); - sal_uInt16 nRecId = 0; StreamDataSequence aRecData; while( VbaHelper::readDirRecord( nRecId, aRecData, aDirStrm ) && (nRecId != VBA_ID_PROJECTEND) ) @@ -562,8 +550,6 @@ void VbaProject::copyStorage( StorageBase& rVbaPrjStrg ) } } - - } // namespace ole } // namespace oox |