diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-15 12:10:20 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-15 12:10:31 +0300 |
commit | 0c27d46498ca191487ae1eb7f24202dee3ef2af5 (patch) | |
tree | f734c81a1998ac8f3dfbbcc517c46eedf2e4dc68 /svx | |
parent | 1f274be55e8c7028bf003786e9b2784909760d07 (diff) |
WaE: 'bValue' may be used uninitialized in this function
Change-Id: Ie30b4d4dea4b0f7762cd5f9e681685986b69fa91
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodialogs/textconversiondlgs/chinese_translationdialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodialogs/textconversiondlgs/chinese_translationdialog.cxx b/svx/source/unodialogs/textconversiondlgs/chinese_translationdialog.cxx index ae0e1b413755..089874cbb11c 100644 --- a/svx/source/unodialogs/textconversiondlgs/chinese_translationdialog.cxx +++ b/svx/source/unodialogs/textconversiondlgs/chinese_translationdialog.cxx @@ -47,7 +47,7 @@ ChineseTranslationDialog::ChineseTranslationDialog( Window* pParent ) get(m_pCB_Translate_Commonterms, "commonterms"); SvtLinguConfig aLngCfg; - bool bValue; + bool bValue = false; Any aAny( aLngCfg.GetProperty( OUString( UPN_IS_DIRECTION_TO_SIMPLIFIED ) ) ); aAny >>= bValue; if( bValue ) |