summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2009-04-30 12:53:23 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2009-04-30 12:53:23 +0000
commit063b11c83815c15fd4cc92bc40b85505ddd66430 (patch)
treefead82beb7cfe0d5c3a63d9d584f4b538f8581bc
parent7533436395997448a5b521e5ec1a2aba54e233f8 (diff)
#i10000# build fix
-rw-r--r--basic/source/app/textedit.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/app/textedit.cxx b/basic/source/app/textedit.cxx
index bf118d1f2c..e07cc90885 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;