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

coverity#738909 Uninitialized scalar field

Change-Id: I332d57bd7a82a734e509afe24c0c716ce8a4e455
üst 85829269
...@@ -167,11 +167,12 @@ IMPL_LINK( SwInsFootNoteDlg, NextPrevHdl, Button *, pBtn ) ...@@ -167,11 +167,12 @@ IMPL_LINK( SwInsFootNoteDlg, NextPrevHdl, Button *, pBtn )
return 0; return 0;
} }
SwInsFootNoteDlg::SwInsFootNoteDlg(Window *pParent, SwWrtShell &rShell, bool bEd) : SwInsFootNoteDlg::SwInsFootNoteDlg(Window *pParent, SwWrtShell &rShell, bool bEd)
SvxStandardDialog(pParent, "InsertFootnoteDialog", "modules/swriter/ui/insertfootnote.ui"), : SvxStandardDialog(pParent, "InsertFootnoteDialog", "modules/swriter/ui/insertfootnote.ui")
rSh(rShell), , rSh(rShell)
bExtCharAvailable(false), , eCharSet(RTL_TEXTENCODING_DONTKNOW)
bEdit(bEd) , bExtCharAvailable(false)
, bEdit(bEd)
{ {
get(m_pNumberFrame, "numberingframe"); get(m_pNumberFrame, "numberingframe");
get(m_pNumberAutoBtn, "automatic"); get(m_pNumberAutoBtn, "automatic");
......
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