diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-16 23:15:55 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-17 23:27:44 +0100 |
commit | 2a566b17752869a2760f85bed5bf4f59ab0b8211 (patch) | |
tree | 2b19ae74e01785b084275952327bf721ac468899 /editeng | |
parent | 3f7c5847ffca045230f4fa2a163405e35afb04d7 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/frmitems.cxx | 4 | ||||
-rw-r--r-- | editeng/source/items/paraitem.cxx | 4 | ||||
-rw-r--r-- | editeng/source/items/textitem.cxx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx index 08b8379fcd44..7627b0022182 100644 --- a/editeng/source/items/frmitems.cxx +++ b/editeng/source/items/frmitems.cxx @@ -3527,7 +3527,7 @@ bool SvxBrushItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const break; case MID_GRAPHIC: - SAL_INFO( "editeng", "not implemented" ); + SAL_WARN( "editeng.items", "not implemented" ); break; case MID_GRAPHIC_TRANSPARENT: @@ -3613,7 +3613,7 @@ bool SvxBrushItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId ) break; case MID_GRAPHIC: - SAL_INFO( "editeng", "not implemented" ); + SAL_WARN( "editeng.items", "not implemented" ); break; case MID_GRAPHIC_TRANSPARENT: diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx index 283b1bd266a7..36986d1c2efb 100644 --- a/editeng/source/items/paraitem.cxx +++ b/editeng/source/items/paraitem.cxx @@ -601,7 +601,7 @@ SfxItemPresentation SvxWidowsItem::GetPresentation default: { - SAL_INFO( "editeng", "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_WARN( "editeng.items", "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); } } @@ -673,7 +673,7 @@ SfxItemPresentation SvxOrphansItem::GetPresentation default: { - SAL_INFO( "editeng", "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_WARN( "editeng.items", "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); } } diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index 2a1dfee2678b..abbb90354f56 100644 --- a/editeng/source/items/textitem.cxx +++ b/editeng/source/items/textitem.cxx @@ -2559,7 +2559,7 @@ SvxLanguageItem::SvxLanguageItem( const LanguageType eLang, const sal_uInt16 nId sal_uInt16 SvxLanguageItem::GetValueCount() const { // #i50205# got rid of class International - SAL_INFO( "editeng", "SvxLanguageItem::GetValueCount: supposed to return a count of what?"); + SAL_WARN( "editeng.items", "SvxLanguageItem::GetValueCount: supposed to return a count of what?"); // FIXME: previously returned LANGUAGE_COUNT from tools/intn.hxx which was wrong anyway. // Could be SvtLanguageTable::GetEntryCount() (all locales with resource string)? // Could be LocaleDataWrapper::getInstalledLanguageTypes() (all locales with locale data)? |