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 /vcl | |
parent | 2a566b17752869a2760f85bed5bf4f59ab0b8211 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/app/settings.cxx | 2 | ||||
-rw-r--r-- | vcl/source/control/field2.cxx | 2 | ||||
-rw-r--r-- | vcl/source/gdi/outdev.cxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/outmap.cxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/print3.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/btndlg.cxx | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/vcl/source/app/settings.cxx b/vcl/source/app/settings.cxx index 00137a2961a6..d74ac36fc5cf 100644 --- a/vcl/source/app/settings.cxx +++ b/vcl/source/app/settings.cxx @@ -1685,7 +1685,7 @@ sal_uLong AllSettings::Update( sal_uLong nFlags, const AllSettings& rSet ) if ( nFlags & SETTINGS_INTERNATIONAL ) { // Nothing, class International is gone. - SAL_INFO( "vcl","AllSettings::Update: who calls with SETTINGS_INTERNATIONAL and why? You're flogging a dead horse."); + SAL_WARN( "vcl.app","AllSettings::Update: who calls with SETTINGS_INTERNATIONAL and why? You're flogging a dead horse."); } if ( nFlags & SETTINGS_LOCALE ) diff --git a/vcl/source/control/field2.cxx b/vcl/source/control/field2.cxx index e93b78e8188d..93c36ef8f00a 100644 --- a/vcl/source/control/field2.cxx +++ b/vcl/source/control/field2.cxx @@ -168,7 +168,7 @@ static int ImplIsPatternChar( xub_Unicode cChar, sal_Char cEditMask ) } catch ( ::com::sun::star::uno::Exception& ) { - SAL_INFO( "vcl", "ImplIsPatternChar: Exception caught!" ); + SAL_WARN( "vcl.control", "ImplIsPatternChar: Exception caught!" ); return sal_False; } diff --git a/vcl/source/gdi/outdev.cxx b/vcl/source/gdi/outdev.cxx index 44b2758b1ed7..fe4952792d6a 100644 --- a/vcl/source/gdi/outdev.cxx +++ b/vcl/source/gdi/outdev.cxx @@ -436,7 +436,7 @@ OutputDevice::~OutputDevice() ImplObjStack* pData = mpObjStack; if ( pData ) { - SAL_INFO( "vcl", "OutputDevice::~OutputDevice(): OutputDevice::Push() calls != OutputDevice::Pop() calls" ); + SAL_WARN( "vcl.gdi", "OutputDevice::~OutputDevice(): OutputDevice::Push() calls != OutputDevice::Pop() calls" ); while ( pData ) { ImplObjStack* pTemp = pData; @@ -2461,7 +2461,7 @@ void OutputDevice::Pop() if ( !pData ) { - SAL_INFO( "vcl", "OutputDevice::Pop() without OutputDevice::Push()" ); + SAL_WARN( "vcl.gdi", "OutputDevice::Pop() without OutputDevice::Push()" ); return; } diff --git a/vcl/source/gdi/outmap.cxx b/vcl/source/gdi/outmap.cxx index abda8cbdfbee..583e1c8d226f 100644 --- a/vcl/source/gdi/outmap.cxx +++ b/vcl/source/gdi/outmap.cxx @@ -871,11 +871,11 @@ void OutputDevice::SetRelativeMapMode( const MapMode& rNewMapMode ) { if ( eOld > MAP_PIXEL ) { - SAL_INFO( "vcl", "Not implemented MapUnit" ); + SAL_WARN( "vcl.gdi", "Not implemented MapUnit" ); } else if ( eNew > MAP_PIXEL ) { - SAL_INFO( "vcl", "Not implemented MapUnit" ); + SAL_WARN( "vcl.gdi", "Not implemented MapUnit" ); } else { diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx index 0c484c5c4a0a..60b449ef8987 100644 --- a/vcl/source/gdi/print3.cxx +++ b/vcl/source/gdi/print3.cxx @@ -248,7 +248,7 @@ static rtl::OUString queryFile( Printer* pPrinter ) } catch (const lang::IllegalArgumentException&) { - SAL_INFO( "vcl", "caught IllegalArgumentException when registering filter\n" ); + SAL_WARN( "vcl.gdi", "caught IllegalArgumentException when registering filter" ); } if( xFilePicker->execute() == ui::dialogs::ExecutableDialogResults::OK ) diff --git a/vcl/source/window/btndlg.cxx b/vcl/source/window/btndlg.cxx index d19196fd6165..ebd091260bb3 100644 --- a/vcl/source/window/btndlg.cxx +++ b/vcl/source/window/btndlg.cxx @@ -344,7 +344,7 @@ void ButtonDialog::RemoveButton( sal_uInt16 nId ) } if (it == maItemList.end()) - SAL_INFO( "vcl", "ButtonDialog::RemoveButton(): ButtonId invalid" ); + SAL_WARN( "vcl.window", "ButtonDialog::RemoveButton(): ButtonId invalid" ); } void ButtonDialog::Clear() |