diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-11 10:14:13 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-01-16 12:51:33 +0100 |
commit | a18123fb97e7c69a7fac6724aaa3a8e2440dae98 (patch) | |
tree | 36546217f7fe0f20c6f07e306d0ad68a880ac82e /editeng | |
parent | 268050960a16af2b404ef3ba42b6185047027e2d (diff) |
Replaced DBG_ERRORFILE with SAL_INFO.
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 a196a1e53a54..08b8379fcd44 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: - DBG_ERRORFILE( "not implemented" ); + SAL_INFO( "editeng", "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: - DBG_ERRORFILE( "not implemented" ); + SAL_INFO( "editeng", "not implemented" ); break; case MID_GRAPHIC_TRANSPARENT: diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx index 3f7ace02048e..283b1bd266a7 100644 --- a/editeng/source/items/paraitem.cxx +++ b/editeng/source/items/paraitem.cxx @@ -601,7 +601,7 @@ SfxItemPresentation SvxWidowsItem::GetPresentation default: { - DBG_ERRORFILE( "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_INFO( "editeng", "SvxWidowsItem::GetPresentation(): unknown SfxItemPresentation" ); } } @@ -673,7 +673,7 @@ SfxItemPresentation SvxOrphansItem::GetPresentation default: { - DBG_ERRORFILE( "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); + SAL_INFO( "editeng", "SvxOrphansItem::GetPresentation(): unknown SfxItemPresentation" ); } } diff --git a/editeng/source/items/textitem.cxx b/editeng/source/items/textitem.cxx index e0117a59e908..2a1dfee2678b 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 - DBG_ERRORFILE("SvxLanguageItem::GetValueCount: supposed to return a count of what?"); + SAL_INFO( "editeng", "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)? |