summaryrefslogtreecommitdiff
path: root/writerperfect/source/draw/CMXImportFilter.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-14 10:57:24 +0200
committerNoel Grandin <noel@peralex.com>2014-05-14 16:54:26 +0200
commit83d77931e03908c1718d9dc48f29c1db984fba85 (patch)
tree7a0742005ac8a569acefca9207a72b275346c78b /writerperfect/source/draw/CMXImportFilter.cxx
parent456352e3fa7e983dc062c32025bb97021e7c18f3 (diff)
writerperfect: remove SAL_INFO's that only mark function entry
Change-Id: I551d3d6b44845bb324b4afcef17fdae0e0fc88e2
Diffstat (limited to 'writerperfect/source/draw/CMXImportFilter.cxx')
-rw-r--r--writerperfect/source/draw/CMXImportFilter.cxx10
1 files changed, 0 insertions, 10 deletions
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();
}