Kaydet (Commit) 137f5866 authored tarafından David Tardon's avatar David Tardon

WaE: unused variable

üst 27a54e55
...@@ -147,12 +147,6 @@ bool lcl_IsUnsupportedUnicodeChar( CharClass& rCC, const String& rTxt, ...@@ -147,12 +147,6 @@ bool lcl_IsUnsupportedUnicodeChar( CharClass& rCC, const String& rTxt,
{ {
for( ; nStt < nEnd; ++nStt ) 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 ); short nScript = rCC.getScript( rTxt, nStt );
switch( nScript ) switch( nScript )
{ {
...@@ -182,12 +176,6 @@ sal_Bool lcl_IsSymbolChar( CharClass& rCC, const String& rTxt, ...@@ -182,12 +176,6 @@ sal_Bool lcl_IsSymbolChar( CharClass& rCC, const String& rTxt,
{ {
for( ; nStt < nEnd; ++nStt ) 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 == if( ::com::sun::star::i18n::UnicodeType::PRIVATE_USE ==
rCC.getType( rTxt, nStt )) rCC.getType( rTxt, nStt ))
return sal_True; return sal_True;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment