Kaydet (Commit) edc8ee00 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708518 Uninitialized scalar field

Change-Id: I09780a6d3de9ab38fc88b0aa5df8e85b1336df7e
üst 9078c7cf
...@@ -149,10 +149,11 @@ SwSpellDialogChildWindow::SwSpellDialogChildWindow ( ...@@ -149,10 +149,11 @@ SwSpellDialogChildWindow::SwSpellDialogChildWindow (
Window* _pParent, Window* _pParent,
sal_uInt16 nId, sal_uInt16 nId,
SfxBindings* pBindings, SfxBindings* pBindings,
SfxChildWinInfo* pInfo) : SfxChildWinInfo* pInfo)
svx::SpellDialogChildWindow ( : svx::SpellDialogChildWindow (
_pParent, nId, pBindings, pInfo), _pParent, nId, pBindings, pInfo)
m_pSpellState(new SpellState) , m_bIsGrammarCheckingOn(false)
, m_pSpellState(new SpellState)
{ {
OUString aPropName(UPN_IS_GRAMMAR_INTERACTIVE); OUString aPropName(UPN_IS_GRAMMAR_INTERACTIVE);
SvtLinguConfig().GetProperty( aPropName ) >>= m_bIsGrammarCheckingOn; SvtLinguConfig().GetProperty( aPropName ) >>= m_bIsGrammarCheckingOn;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment