summaryrefslogtreecommitdiff
path: root/lingucomponent/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-27 16:53:01 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-27 16:53:01 +0000
commit2158a2497c28a8f1e9af1bc974b9d4da83cc3fb1 (patch)
treefe7770fddffd9f7b7188d7158001f667142e189e /lingucomponent/source
parent34b5dc33d450661bcd9c9f474ed18df8e98634ba (diff)
WaE: gcc 4.6.0 various warnings
Diffstat (limited to 'lingucomponent/source')
-rw-r--r--lingucomponent/source/lingutil/lingutil.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/lingucomponent/source/lingutil/lingutil.cxx b/lingucomponent/source/lingutil/lingutil.cxx
index de7cdc3f4539..d155d552100b 100644
--- a/lingucomponent/source/lingutil/lingutil.cxx
+++ b/lingucomponent/source/lingutil/lingutil.cxx
@@ -124,9 +124,6 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
rtl::OUString aSystemPrefix;
rtl::OUString aSystemSuffix;
#endif
- bool bSpell = false;
- bool bHyph = false;
- bool bThes = false;
if (strcmp( pDicType, "DICT" ) == 0)
{
aFormatName = A2OU("DICT_SPELL");
@@ -135,7 +132,6 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
aSystemDir = A2OU( DICT_SYSTEM_DIR );
aSystemSuffix = aDicExtension;
#endif
- bSpell = true;
}
else if (strcmp( pDicType, "HYPH" ) == 0)
{
@@ -146,7 +142,6 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
aSystemPrefix = A2OU( "hyph_" );
aSystemSuffix = aDicExtension;
#endif
- bHyph = true;
}
else if (strcmp( pDicType, "THES" ) == 0)
{
@@ -157,7 +152,6 @@ std::vector< SvtLinguConfigDictionaryEntry > GetOldStyleDics( const char *pDicTy
aSystemPrefix = A2OU( "th_" );
aSystemSuffix = A2OU( "_v2.dat" );
#endif
- bThes = true;
}