summaryrefslogtreecommitdiff
path: root/editeng/source/misc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-01 19:07:44 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-02 15:04:37 +0100
commit65c053ca1a5a8c7318ab1e42cdde2d540a283673 (patch)
tree2e1a29f5d832ff0cb0d4c095f038392b472459d1 /editeng/source/misc
parent40afe52c92f340d0fedbb59d1071a542e6fb61e3 (diff)
Move DBG_ERROR to OSL_FAIL
Diffstat (limited to 'editeng/source/misc')
-rw-r--r--editeng/source/misc/hangulhanja.cxx18
-rw-r--r--editeng/source/misc/svxacorr.cxx4
-rw-r--r--editeng/source/misc/unolingu.cxx4
3 files changed, 13 insertions, 13 deletions
diff --git a/editeng/source/misc/hangulhanja.cxx b/editeng/source/misc/hangulhanja.cxx
index 21b88157bfba..ec0a91166ebc 100644
--- a/editeng/source/misc/hangulhanja.cxx
+++ b/editeng/source/misc/hangulhanja.cxx
@@ -279,7 +279,7 @@ namespace editeng
m_eConvType = HHC::eConvSimplifiedTraditional;
else
{
- DBG_ERROR( "failed to determine conversion type from languages" );
+ OSL_FAIL( "failed to determine conversion type from languages" );
}
// set remaining conversion parameters to their default values
@@ -450,7 +450,7 @@ namespace editeng
}
catch( const Exception& )
{
- DBG_ERROR( "HangulHanjaConversion_Impl::implNextConvertibleUnit: caught an exception!" );
+ OSL_FAIL( "HangulHanjaConversion_Impl::implNextConvertibleUnit: caught an exception!" );
//!!! at least we want to move on in the text in order
//!!! to avoid an endless loop...
@@ -652,7 +652,7 @@ namespace editeng
}
catch( const Exception& )
{
- DBG_ERROR( "HangulHanjaConversion_Impl::implGetConversionDirectionForCurrentPortion: caught an exception!" );
+ OSL_FAIL( "HangulHanjaConversion_Impl::implGetConversionDirectionForCurrentPortion: caught an exception!" );
}
}
@@ -755,7 +755,7 @@ namespace editeng
case HHC::eRubyHangulAbove: eAction = bOriginalIsHangul ? HHC::eOriginalAbove : HHC::eReplacementAbove; break;
case HHC::eRubyHangulBelow: eAction = bOriginalIsHangul ? HHC::eOriginalBelow : HHC::eReplacementBelow; break;
default:
- DBG_ERROR( "HangulHanjaConversion_Impl::implChange: invalid/unexpected conversion format!" );
+ OSL_FAIL( "HangulHanjaConversion_Impl::implChange: invalid/unexpected conversion format!" );
}
}
@@ -808,7 +808,7 @@ namespace editeng
}
catch( const Exception& )
{
- DBG_ERROR( "HangulHanjaConversion_Impl::implChange: caught unexpected exception!" );
+ OSL_FAIL( "HangulHanjaConversion_Impl::implChange: caught unexpected exception!" );
aOffsets.realloc(0);
}
}
@@ -988,7 +988,7 @@ namespace editeng
}
catch( const Exception& )
{
- DBG_ERROR( "HangulHanjaConversion_Impl::OnFind: caught an exception!" );
+ OSL_FAIL( "HangulHanjaConversion_Impl::OnFind: caught an exception!" );
}
}
return 0L;
@@ -1053,7 +1053,7 @@ namespace editeng
void HangulHanjaConversion::GetNextPortion( ::rtl::OUString&, LanguageType&, sal_Bool )
{
- DBG_ERROR( "HangulHanjaConversion::GetNextPortion: to be overridden!" );
+ OSL_FAIL( "HangulHanjaConversion::GetNextPortion: to be overridden!" );
}
void HangulHanjaConversion::ReplaceUnit(
@@ -1064,12 +1064,12 @@ namespace editeng
ReplacementAction,
LanguageType * )
{
- DBG_ERROR( "HangulHanjaConversion::ReplaceUnit: to be overridden!" );
+ OSL_FAIL( "HangulHanjaConversion::ReplaceUnit: to be overridden!" );
}
sal_Bool HangulHanjaConversion::HasRubySupport() const
{
- DBG_ERROR( "HangulHanjaConversion::HasRubySupport: to be overridden!" );
+ OSL_FAIL( "HangulHanjaConversion::HasRubySupport: to be overridden!" );
return sal_False;
}
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 0dfb8943360f..5e0a8b3f32f4 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -1472,7 +1472,7 @@ void SvxAutoCorrect::SaveCplSttExceptList( LanguageType eLang )
#ifdef DBG_UTIL
else
{
- DBG_ERROR("Save an empty list? ");
+ OSL_FAIL("Save an empty list? ");
}
#endif
}
@@ -1488,7 +1488,7 @@ void SvxAutoCorrect::SaveWrdSttExceptList(LanguageType eLang)
#ifdef DBG_UTIL
else
{
- DBG_ERROR("Save an empty list? ");
+ OSL_FAIL("Save an empty list? ");
}
#endif
}
diff --git a/editeng/source/misc/unolingu.cxx b/editeng/source/misc/unolingu.cxx
index 1eb6f63e69e1..3a2f8720a8b0 100644
--- a/editeng/source/misc/unolingu.cxx
+++ b/editeng/source/misc/unolingu.cxx
@@ -161,7 +161,7 @@ Sequence< OUString > lcl_GetLastFoundSvcs(
aRes = aSvcImplNames;
else
{
- DBG_ERROR( "type mismatch" );
+ OSL_FAIL( "type mismatch" );
}
}
}
@@ -393,7 +393,7 @@ void SvxLinguConfigUpdate::UpdateAll( sal_Bool bForceCheck )
if (!bRes)
{
#if OSL_DEBUG_LEVEL > 1
- DBG_ERROR( "failed to set new configuration values" );
+ OSL_FAIL( "failed to set new configuration values" );
#endif
}
}