diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 11:05:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 13:44:14 +0200 |
commit | d6550ca7bbcb375cdb7ca677749a2e248c9f007f (patch) | |
tree | d763d2f9c20dbba76c86f22c2954dcbec28ff99d /linguistic | |
parent | 2227bcc1f915aef367c4252bc1d1f5b7030dac87 (diff) |
Fix sal_Int16 var initialization
Change-Id: I485fce696a1c1b18a563f56b0d69bb3816bd8784
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/lngopt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx index f98ec4f844ef..b12938a9f128 100644 --- a/linguistic/source/lngopt.cxx +++ b/linguistic/source/lngopt.cxx @@ -467,7 +467,7 @@ bool LinguProps::getPropertyBool(const OUString& aPropertyName) throw (css::uno: sal_Int16 LinguProps::getPropertyInt16(const OUString& aPropertyName) throw (css::uno::RuntimeException) { uno::Any any = getPropertyValue(aPropertyName); - sal_Int16 b = sal_False; + sal_Int16 b = 0; any >>= b; return b; } |