diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-16 23:21:15 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-17 23:27:44 +0100 |
commit | d2c8003ecbf239faa5ed455cb3bfcb03e912e3cd (patch) | |
tree | 6ee21a2bfa5a60f00070aad44ca9674d53c14a3a /xmloff/source | |
parent | 2a566b17752869a2760f85bed5bf4f59ab0b8211 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/chart/SchXMLExport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/chart/SchXMLPlotAreaContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/core/xmlexp.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/core/xmlimp.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx index 48d0b69ea69e..9059210d05ab 100644 --- a/xmloff/source/chart/SchXMLExport.cxx +++ b/xmloff/source/chart/SchXMLExport.cxx @@ -2009,7 +2009,7 @@ void SchXMLExportHelper_Impl::exportPlotArea( } catch( const beans::UnknownPropertyException & ) { - SAL_INFO( "vcl", "Properties missing" ); + SAL_WARN( "xmloff.chart", "Properties missing" ); } } } diff --git a/xmloff/source/chart/SchXMLPlotAreaContext.cxx b/xmloff/source/chart/SchXMLPlotAreaContext.cxx index 3b0e4c24b30e..ae1a274981c8 100644 --- a/xmloff/source/chart/SchXMLPlotAreaContext.cxx +++ b/xmloff/source/chart/SchXMLPlotAreaContext.cxx @@ -322,7 +322,7 @@ void SchXMLPlotAreaContext::StartElement( const uno::Reference< xml::sax::XAttri } catch( const beans::UnknownPropertyException & ) { - SAL_INFO( "vcl", "Properties missing" ); + SAL_WARN( "xmloff.chart", "Properties missing" ); } } } diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx index f80a0ed0c479..10d8dcc65e4e 100644 --- a/xmloff/source/core/xmlexp.cxx +++ b/xmloff/source/core/xmlexp.cxx @@ -2077,7 +2077,7 @@ ProgressBarHelper* SvXMLExport::GetProgressBarHelper() if (aAny.getValueType() == getBooleanCppuType()) mpProgressBarHelper->SetRepeat(::cppu::any2bool(aAny)); else { - SAL_INFO( "xmloff","why is it no boolean?"); + SAL_WARN( "xmloff.core", "why is it no boolean?" ); } } } diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx index 4440b05b2441..3b73a6ffee6a 100644 --- a/xmloff/source/core/xmlimp.cxx +++ b/xmloff/source/core/xmlimp.cxx @@ -1388,7 +1388,7 @@ ProgressBarHelper* SvXMLImport::GetProgressBarHelper() if (aAny.getValueType() == getBooleanCppuType()) mpProgressBarHelper->SetRepeat(::cppu::any2bool(aAny)); else { - SAL_INFO( "xmloff","why is it no boolean?"); + SAL_WARN( "xmloff.core", "why is it no boolean?" ); } } } |