summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdicxml.hxx2
-rw-r--r--linguistic/source/defs.hxx8
2 files changed, 2 insertions, 8 deletions
diff --git a/linguistic/source/convdicxml.hxx b/linguistic/source/convdicxml.hxx
index c96c4a81d781..f20599a15ea9 100644
--- a/linguistic/source/convdicxml.hxx
+++ b/linguistic/source/convdicxml.hxx
@@ -77,7 +77,6 @@ class ConvDicXMLImport : public SvXMLImport
sal_Int16 nLanguage; // language of the dictionary
sal_Int16 nConversionType; // conversion type the dictionary is used for
- bool bSuccess;
public:
@@ -88,7 +87,6 @@ public:
{
nLanguage = LANGUAGE_NONE;
nConversionType = -1;
- bSuccess = false;
}
virtual ~ConvDicXMLImport() throw ()
diff --git a/linguistic/source/defs.hxx b/linguistic/source/defs.hxx
index f356a494a4ea..96c6ee78d505 100644
--- a/linguistic/source/defs.hxx
+++ b/linguistic/source/defs.hxx
@@ -36,17 +36,15 @@ struct LangSvcEntries
css::uno::Sequence< OUString > aSvcImplNames;
sal_Int16 nLastTriedSvcIndex;
- bool bAlreadyWarned;
- bool bDoWarnAgain;
explicit LangSvcEntries( const css::uno::Sequence< OUString > &rSvcImplNames ) :
aSvcImplNames(rSvcImplNames),
- nLastTriedSvcIndex(-1), bAlreadyWarned(false), bDoWarnAgain(false)
+ nLastTriedSvcIndex(-1)
{
}
explicit LangSvcEntries( const OUString &rSvcImplName ) :
- nLastTriedSvcIndex(-1), bAlreadyWarned(false), bDoWarnAgain(false)
+ nLastTriedSvcIndex(-1)
{
aSvcImplNames.realloc(1);
aSvcImplNames[0] = rSvcImplName;
@@ -56,8 +54,6 @@ struct LangSvcEntries
{
aSvcImplNames.realloc(0);
nLastTriedSvcIndex = -1;
- bAlreadyWarned = false;
- bDoWarnAgain = false;
}
};