diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2009-04-30 12:53:23 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2009-04-30 12:53:23 +0000 |
commit | b5b6ea1d50eabc5043198c95465532d08da6afb2 (patch) | |
tree | 65d72190a68c1faa36d2b28b2d616ae3e6fae7ed /basic/source/app | |
parent | fb254d707ac0a8b37a0dbf6e5633f0050d603eee (diff) |
#i10000# build fix
Diffstat (limited to 'basic/source/app')
-rw-r--r-- | basic/source/app/textedit.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/app/textedit.cxx b/basic/source/app/textedit.cxx index 933a9eddddb7..0bc6e7c16e37 100644 --- a/basic/source/app/textedit.cxx +++ b/basic/source/app/textedit.cxx @@ -255,12 +255,12 @@ void TextEditImp::ImpDoHighlight( const String& rSource, ULONG nLineOff ) // they are optimized by the EditEngine. xub_StrLen nLastEnd = 0; #ifdef DBG_UTIL - xub_StrLen nLine = aPortionList[0].nLine; + xub_StrLen nLine1 = aPortionList[0].nLine; #endif for ( i = 0; i < nCount; i++ ) { SbTextPortion& r = aPortionList[i]; - DBG_ASSERT( r.nLine == nLine, "doch mehrere Zeilen ?" ); + DBG_ASSERT( r.nLine == nLine1, "doch mehrere Zeilen ?" ); DBG_ASSERT( r.nStart <= r.nEnd, "Highlight: Start > End?" ); if ( r.nStart > r.nEnd ) // Nur bis Bug von MD behoben continue; |