summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-03-29 19:11:01 +0200
committerDavid Tardon <dtardon@redhat.com>2011-03-29 19:11:01 +0200
commit9d26ce19c5910a945a525829be0d7f0728294315 (patch)
tree1f3523332f47daec0d0c9069f3ded05e8cab4105 /editeng
parentaafe3510a135d3dae9788d78dcdc11a55ffe7ff3 (diff)
WaE: unused variable
Diffstat (limited to 'editeng')
-rwxr-xr-xediteng/source/misc/svxacorr.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 3081606e6c..9677e4a4a5 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;