From 137f5866a21fa9620ce4ec8729076b778748b52f Mon Sep 17 00:00:00 2001 From: David Tardon Date: Tue, 29 Mar 2011 19:11:01 +0200 Subject: WaE: unused variable --- editeng/source/misc/svxacorr.cxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'editeng') diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 94390c112410..74c1023ecd2f 100755 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -147,12 +147,6 @@ bool lcl_IsUnsupportedUnicodeChar( CharClass& rCC, const String& rTxt, { for( ; nStt < nEnd; ++nStt ) { -#if OSL_DEBUG_LEVEL > 1 - sal_Int32 nCharType; - sal_Int32 nChType; - nCharType = rCC.getCharacterType( rTxt, nStt ); - nChType = rCC.getType( rTxt, nStt ); -#endif short nScript = rCC.getScript( rTxt, nStt ); switch( nScript ) { @@ -182,12 +176,6 @@ sal_Bool lcl_IsSymbolChar( CharClass& rCC, const String& rTxt, { for( ; nStt < nEnd; ++nStt ) { -#if OSL_DEBUG_LEVEL > 1 - sal_Int32 nCharType; - sal_Int32 nChType; - nCharType = rCC.getCharacterType( rTxt, nStt ); - nChType = rCC.getType( rTxt, nStt ); -#endif if( ::com::sun::star::i18n::UnicodeType::PRIVATE_USE == rCC.getType( rTxt, nStt )) return sal_True; -- cgit