summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/fontbuff.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-16 04:58:29 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-16 04:58:59 +0100
commitfd17ba6a421acf63b3b959138bb572498d56d469 (patch)
tree26d134d7f30bc7187c5a4df49162ac4e79793b42 /sc/source/filter/excel/fontbuff.cxx
parentf63423d58551b387dd9617c6c84719a95ee6d522 (diff)
sc: translate some debug messages
Change-Id: I0c741d2cda4568aef81a18788a764f3ef679660c
Diffstat (limited to 'sc/source/filter/excel/fontbuff.cxx')
-rw-r--r--sc/source/filter/excel/fontbuff.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/excel/fontbuff.cxx b/sc/source/filter/excel/fontbuff.cxx
index 4d51afb95e4f..478d2ed78521 100644
--- a/sc/source/filter/excel/fontbuff.cxx
+++ b/sc/source/filter/excel/fontbuff.cxx
@@ -83,7 +83,7 @@ void LotusFontBuffer::Fill( const sal_uInt8 nIndex, SfxItemSet& rItemSet )
void LotusFontBuffer::SetName( const sal_uInt16 nIndex, const String& rName )
{
- OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetName(): Array zu klein!" );
+ OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetName(): Array too small!" );
if( nIndex < nSize )
{
register ENTRY* pEntry = pData + nIndex;
@@ -97,7 +97,7 @@ void LotusFontBuffer::SetName( const sal_uInt16 nIndex, const String& rName )
void LotusFontBuffer::SetHeight( const sal_uInt16 nIndex, const sal_uInt16 nHeight )
{
- OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetHeight(): Array zu klein!" );
+ OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetHeight(): Array too small!" );
if( nIndex < nSize )
pData[ nIndex ].Height( *( new SvxFontHeightItem( ( sal_uLong ) nHeight * 20, 100, ATTR_FONT_HEIGHT ) ) );
}
@@ -105,7 +105,7 @@ void LotusFontBuffer::SetHeight( const sal_uInt16 nIndex, const sal_uInt16 nHeig
void LotusFontBuffer::SetType( const sal_uInt16 nIndex, const sal_uInt16 nType )
{
- OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetType(): Array zu klein!" );
+ OSL_ENSURE( nIndex < nSize, "*LotusFontBuffer::SetType(): Array too small!" );
if( nIndex < nSize )
{
register ENTRY* pEntry = pData + nIndex;