diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-11-07 18:18:27 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@hemulen.(none)> | 2010-11-07 18:18:27 +0200 |
commit | 0d94ee78d20e702bbeaec4bdc28448a7c8c0c9c5 (patch) | |
tree | 8c3cfab74fec37e91d2963f30d292fb02931b035 | |
parent | 6ee21cd5298faf114b90bb573d17c664e8ff2cfb (diff) |
Fix compilation error caused by DBG_UTIL vs. OSL_DEBUG_LEVEL mixup
-rw-r--r-- | sw/source/ui/docvw/srcedtw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/docvw/srcedtw.cxx b/sw/source/ui/docvw/srcedtw.cxx index a089a21f66..9661ab03e6 100644 --- a/sw/source/ui/docvw/srcedtw.cxx +++ b/sw/source/ui/docvw/srcedtw.cxx @@ -763,7 +763,7 @@ void SwSrcEditWindow::ImpDoHighlight( const String& rSource, USHORT nLineOff ) // optimiert das die TextEngine. USHORT nLastEnd = 0; -#if OSL_DEBUG_LEVEL > 1 +#ifdef DBG_UTIL USHORT nLine = aPortionList[0].nLine; #endif for ( USHORT i = 0; i < nCount; i++ ) |