diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-14 10:57:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-14 16:54:26 +0200 |
commit | 83d77931e03908c1718d9dc48f29c1db984fba85 (patch) | |
tree | 7a0742005ac8a569acefca9207a72b275346c78b /writerperfect/source/impress | |
parent | 456352e3fa7e983dc062c32025bb97021e7c18f3 (diff) |
writerperfect: remove SAL_INFO's that only mark function entry
Change-Id: I551d3d6b44845bb324b4afcef17fdae0e0fc88e2
Diffstat (limited to 'writerperfect/source/impress')
-rw-r--r-- | writerperfect/source/impress/KeynoteImportFilter.cxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/writerperfect/source/impress/KeynoteImportFilter.cxx b/writerperfect/source/impress/KeynoteImportFilter.cxx index 0e5a6bd0c5dc..9f8b57e03fce 100644 --- a/writerperfect/source/impress/KeynoteImportFilter.cxx +++ b/writerperfect/source/impress/KeynoteImportFilter.cxx @@ -104,7 +104,6 @@ bool lcl_isPackage( const Any &rComponentData ) sal_Bool SAL_CALL KeynoteImportFilter::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::filter"); sal_Int32 nLength = aDescriptor.getLength(); const PropertyValue *pValue = aDescriptor.getConstArray(); Reference < XInputStream > xInputStream; @@ -159,14 +158,12 @@ throw (RuntimeException, std::exception) void SAL_CALL KeynoteImportFilter::cancel( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::cancel"); } // XImporter void SAL_CALL KeynoteImportFilter::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc ) throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::setTargetDocument"); mxDoc = xDoc; } @@ -174,8 +171,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std:: OUString SAL_CALL KeynoteImportFilter::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor ) throw( com::sun::star::uno::RuntimeException, std::exception ) { - SAL_INFO("writerperfect", "KeynoteImportFilter::detect"); - sal_Int32 nLength = Descriptor.getLength(); sal_Int32 nNewLength = nLength + 2; sal_Int32 nComponentDataLocation = -1; @@ -338,7 +333,6 @@ throw( com::sun::star::uno::RuntimeException, std::exception ) void SAL_CALL KeynoteImportFilter::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::initialize"); Sequence < PropertyValue > aAnySeq; sal_Int32 nLength = aArguments.getLength(); if ( nLength && ( aArguments[0] >>= aAnySeq ) ) @@ -359,7 +353,6 @@ throw (Exception, RuntimeException, std::exception) OUString KeynoteImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "KeynoteImportFilter_getImplementationName"); return OUString ( "org.libreoffice.comp.Impress.KeynoteImportFilter" ); } @@ -369,7 +362,6 @@ throw (RuntimeException) Sequence< OUString > SAL_CALL KeynoteImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "KeynoteImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = OUString ( SERVICE_NAME1 ); @@ -383,7 +375,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL KeynoteImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "KeynoteImportFilter_createInstance"); return (cppu::OWeakObject *) new KeynoteImportFilter( rContext ); } @@ -391,21 +382,18 @@ throw( Exception ) OUString SAL_CALL KeynoteImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::getImplementationName"); return KeynoteImportFilter_getImplementationName(); } sal_Bool SAL_CALL KeynoteImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::supportsService"); return cppu::supportsService(this, rServiceName); } Sequence< OUString > SAL_CALL KeynoteImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "KeynoteImportFilter::getSupportedServiceNames"); return KeynoteImportFilter_getSupportedServiceNames(); } |