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/draw | |
parent | 456352e3fa7e983dc062c32025bb97021e7c18f3 (diff) |
writerperfect: remove SAL_INFO's that only mark function entry
Change-Id: I551d3d6b44845bb324b4afcef17fdae0e0fc88e2
Diffstat (limited to 'writerperfect/source/draw')
-rw-r--r-- | writerperfect/source/draw/CDRImportFilter.cxx | 10 | ||||
-rw-r--r-- | writerperfect/source/draw/CMXImportFilter.cxx | 10 | ||||
-rw-r--r-- | writerperfect/source/draw/FreehandImportFilter.cxx | 10 | ||||
-rw-r--r-- | writerperfect/source/draw/ImportFilterBase.cxx | 5 | ||||
-rw-r--r-- | writerperfect/source/draw/MSPUBImportFilter.cxx | 10 | ||||
-rw-r--r-- | writerperfect/source/draw/VisioImportFilter.cxx | 10 | ||||
-rw-r--r-- | writerperfect/source/draw/WPGImportFilter.cxx | 10 |
7 files changed, 0 insertions, 65 deletions
diff --git a/writerperfect/source/draw/CDRImportFilter.cxx b/writerperfect/source/draw/CDRImportFilter.cxx index 396ab45720d5..4cc568889c4c 100644 --- a/writerperfect/source/draw/CDRImportFilter.cxx +++ b/writerperfect/source/draw/CDRImportFilter.cxx @@ -29,15 +29,11 @@ using com::sun::star::uno::XInterface; bool CDRImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "CDRImportFilter::doImportDocument"); - return libcdr::CDRDocument::parse(&rInput, &rGenerator); } bool CDRImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "CDRImportFilter::doDetectFormat"); - if (libcdr::CDRDocument::isSupported(&rInput)) { rTypeName = "draw_CorelDraw_Document"; @@ -50,14 +46,12 @@ bool CDRImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam OUString CDRImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "CDRImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.CDRImportFilter" ); } Sequence< OUString > SAL_CALL CDRImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "CDRImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -68,7 +62,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL CDRImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "CDRImportFilter_createInstance"); return (cppu::OWeakObject *) new CDRImportFilter( rContext ); } @@ -76,19 +69,16 @@ throw( Exception ) OUString SAL_CALL CDRImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CDRImportFilter::getImplementationName"); return CDRImportFilter_getImplementationName(); } sal_Bool SAL_CALL CDRImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CDRImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL CDRImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CDRImportFilter::getSupportedServiceNames"); return CDRImportFilter_getSupportedServiceNames(); } diff --git a/writerperfect/source/draw/CMXImportFilter.cxx b/writerperfect/source/draw/CMXImportFilter.cxx index cc8f1e803f20..78f39de1306f 100644 --- a/writerperfect/source/draw/CMXImportFilter.cxx +++ b/writerperfect/source/draw/CMXImportFilter.cxx @@ -29,15 +29,11 @@ using com::sun::star::uno::XInterface; bool CMXImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "CMXImportFilter::doImportDocument"); - return libcdr::CMXDocument::parse(&rInput, &rGenerator); } bool CMXImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "CMXImportFilter::doDetectFormat"); - if (libcdr::CMXDocument::isSupported(&rInput)) { rTypeName = "draw_Corel_Presentation_Exchange"; @@ -50,14 +46,12 @@ bool CMXImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam OUString CMXImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "CMXImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.CMXImportFilter" ); } Sequence< OUString > SAL_CALL CMXImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "CMXImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -68,7 +62,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL CMXImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "CMXImportFilter_createInstance"); return (cppu::OWeakObject *) new CMXImportFilter( rContext ); } @@ -76,19 +69,16 @@ throw( Exception ) OUString SAL_CALL CMXImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CMXImportFilter::getImplementationName"); return CMXImportFilter_getImplementationName(); } sal_Bool SAL_CALL CMXImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CMXImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL CMXImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "CMXImportFilter::getSupportedServiceNames"); return CMXImportFilter_getSupportedServiceNames(); } diff --git a/writerperfect/source/draw/FreehandImportFilter.cxx b/writerperfect/source/draw/FreehandImportFilter.cxx index cfc0a491ae55..b92386fe8900 100644 --- a/writerperfect/source/draw/FreehandImportFilter.cxx +++ b/writerperfect/source/draw/FreehandImportFilter.cxx @@ -25,15 +25,11 @@ using com::sun::star::uno::XInterface; bool FreehandImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "FreehandImportFilter::doImportDocument"); - return libfreehand::FreeHandDocument::parse(&rInput, &rGenerator); } bool FreehandImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "FreehandImportFilter::doDetectFormat"); - if (libfreehand::FreeHandDocument::isSupported(&rInput)) { rTypeName = "draw_Freehand_Document"; @@ -46,14 +42,12 @@ bool FreehandImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTy OUString FreehandImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "FreehandImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.FreehandImportFilter" ); } Sequence< OUString > SAL_CALL FreehandImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "FreehandImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -64,7 +58,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL FreehandImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "FreehandImportFilter_createInstance"); return (cppu::OWeakObject *) new FreehandImportFilter( rContext ); } @@ -72,19 +65,16 @@ throw( Exception ) OUString SAL_CALL FreehandImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "FreehandImportFilter::getImplementationName"); return FreehandImportFilter_getImplementationName(); } sal_Bool SAL_CALL FreehandImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "FreehandImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL FreehandImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "FreehandImportFilter::getSupportedServiceNames"); return FreehandImportFilter_getSupportedServiceNames(); } diff --git a/writerperfect/source/draw/ImportFilterBase.cxx b/writerperfect/source/draw/ImportFilterBase.cxx index 4488c6a8baa0..ce98231da8b0 100644 --- a/writerperfect/source/draw/ImportFilterBase.cxx +++ b/writerperfect/source/draw/ImportFilterBase.cxx @@ -62,7 +62,6 @@ ImportFilterImpl::~ImportFilterImpl() sal_Bool SAL_CALL ImportFilterImpl::filter( const Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "ImportFilterImpl::filter"); sal_Int32 nLength = aDescriptor.getLength(); const PropertyValue *pValue = aDescriptor.getConstArray(); Reference < XInputStream > xInputStream; @@ -101,14 +100,12 @@ throw (RuntimeException, std::exception) void SAL_CALL ImportFilterImpl::cancel( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "ImportFilterImpl::cancel"); } // XImporter void SAL_CALL ImportFilterImpl::setTargetDocument( const Reference< ::com::sun::star::lang::XComponent >& xDoc ) throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std::exception) { - SAL_INFO("writerperfect", "ImportFilterImpl::setTargetDocument"); mxDoc = xDoc; } @@ -116,7 +113,6 @@ throw (::com::sun::star::lang::IllegalArgumentException, RuntimeException, std:: OUString SAL_CALL ImportFilterImpl::detect( com::sun::star::uno::Sequence< PropertyValue >& Descriptor ) throw( com::sun::star::uno::RuntimeException, std::exception ) { - SAL_INFO("writerperfect", "ImportFilterImpl::detect"); OUString sTypeName; sal_Int32 nLength = Descriptor.getLength(); sal_Int32 location = nLength; @@ -156,7 +152,6 @@ throw( com::sun::star::uno::RuntimeException, std::exception ) void SAL_CALL ImportFilterImpl::initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException, std::exception) { - SAL_INFO("writerperfect", "ImportFilterImpl::initialize"); Sequence < PropertyValue > aAnySeq; sal_Int32 nLength = aArguments.getLength(); if ( nLength && ( aArguments[0] >>= aAnySeq ) ) diff --git a/writerperfect/source/draw/MSPUBImportFilter.cxx b/writerperfect/source/draw/MSPUBImportFilter.cxx index ca6c8a2ba930..08f275d81fc3 100644 --- a/writerperfect/source/draw/MSPUBImportFilter.cxx +++ b/writerperfect/source/draw/MSPUBImportFilter.cxx @@ -27,15 +27,11 @@ using com::sun::star::uno::XInterface; bool MSPUBImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "MSPUBImportFilter::doImportDocument"); - return libmspub::MSPUBDocument::parse(&rInput, &rGenerator); } bool MSPUBImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "MSPUBImportFilter::doDetectFormat"); - if (libmspub::MSPUBDocument::isSupported(&rInput)) { rTypeName = "draw_Publisher_Document"; @@ -48,14 +44,12 @@ bool MSPUBImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeN OUString MSPUBImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "MSPUBImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.MSPUBImportFilter" ); } Sequence< OUString > SAL_CALL MSPUBImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "MSPUBImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -66,7 +60,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL MSPUBImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "MSPUBImportFilter_createInstance"); return (cppu::OWeakObject *) new MSPUBImportFilter( rContext ); } @@ -74,19 +67,16 @@ throw( Exception ) OUString SAL_CALL MSPUBImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "MSPUBImportFilter::getImplementationName"); return MSPUBImportFilter_getImplementationName(); } sal_Bool SAL_CALL MSPUBImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "MSPUBImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL MSPUBImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "MSPUBImportFilter::getSupportedServiceNames"); return MSPUBImportFilter_getSupportedServiceNames(); } diff --git a/writerperfect/source/draw/VisioImportFilter.cxx b/writerperfect/source/draw/VisioImportFilter.cxx index 0c5d32fcf007..311068b4edb6 100644 --- a/writerperfect/source/draw/VisioImportFilter.cxx +++ b/writerperfect/source/draw/VisioImportFilter.cxx @@ -25,15 +25,11 @@ using com::sun::star::uno::XInterface; bool VisioImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "VisioImportFilter::doImportDocument"); - return libvisio::VisioDocument::parse(&rInput, &rGenerator); } bool VisioImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "VisioImportFilter::doDetectFormat"); - if (libvisio::VisioDocument::isSupported(&rInput)) { rTypeName = "draw_Visio_Document"; @@ -46,14 +42,12 @@ bool VisioImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeN OUString VisioImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "VisioImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.VisioImportFilter" ); } Sequence< OUString > SAL_CALL VisioImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "VisioImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -64,7 +58,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL VisioImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "VisioImportFilter_createInstance"); return (cppu::OWeakObject *) new VisioImportFilter( rContext ); } @@ -72,19 +65,16 @@ throw( Exception ) OUString SAL_CALL VisioImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "VisioImportFilter::getImplementationName"); return VisioImportFilter_getImplementationName(); } sal_Bool SAL_CALL VisioImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "VisioImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL VisioImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "VisioImportFilter::getSupportedServiceNames"); return VisioImportFilter_getSupportedServiceNames(); } diff --git a/writerperfect/source/draw/WPGImportFilter.cxx b/writerperfect/source/draw/WPGImportFilter.cxx index 6e4dd3a00411..4341af2c36a3 100644 --- a/writerperfect/source/draw/WPGImportFilter.cxx +++ b/writerperfect/source/draw/WPGImportFilter.cxx @@ -30,15 +30,11 @@ using com::sun::star::uno::XInterface; bool WPGImportFilter::doImportDocument( WPXInputStream &rInput, libwpg::WPGPaintInterface &rGenerator ) { - SAL_INFO("writerperfect", "WPGImportFilter::doImportDocument"); - return libwpg::WPGraphics::parse(&rInput, &rGenerator); } bool WPGImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeName ) { - SAL_INFO("writerperfect", "WPGImportFilter::doDetectFormat"); - if (libwpg::WPGraphics::isSupported(&rInput)) { rTypeName = "draw_WordPerfect_Graphics"; @@ -51,14 +47,12 @@ bool WPGImportFilter::doDetectFormat( WPXInputStream &rInput, OUString &rTypeNam OUString WPGImportFilter_getImplementationName () throw (RuntimeException) { - SAL_INFO("writerperfect", "WPGImportFilter_getImplementationName"); return OUString ( "com.sun.star.comp.Draw.WPGImportFilter" ); } Sequence< OUString > SAL_CALL WPGImportFilter_getSupportedServiceNames( ) throw (RuntimeException) { - SAL_INFO("writerperfect", "WPGImportFilter_getSupportedServiceNames"); Sequence < OUString > aRet(2); OUString *pArray = aRet.getArray(); pArray[0] = "com.sun.star.document.ImportFilter"; @@ -69,7 +63,6 @@ throw (RuntimeException) Reference< XInterface > SAL_CALL WPGImportFilter_createInstance( const Reference< XComponentContext > & rContext) throw( Exception ) { - SAL_INFO("writerperfect", "WPGImportFilter_createInstance"); return (cppu::OWeakObject *) new WPGImportFilter( rContext ); } @@ -77,19 +70,16 @@ throw( Exception ) OUString SAL_CALL WPGImportFilter::getImplementationName( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "WPGImportFilter::getImplementationName"); return WPGImportFilter_getImplementationName(); } sal_Bool SAL_CALL WPGImportFilter::supportsService( const OUString &rServiceName ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "WPGImportFilter::supportsService"); return cppu::supportsService( this, rServiceName ); } Sequence< OUString > SAL_CALL WPGImportFilter::getSupportedServiceNames( ) throw (RuntimeException, std::exception) { - SAL_INFO("writerperfect", "WPGImportFilter::getSupportedServiceNames"); return WPGImportFilter_getSupportedServiceNames(); } |