summaryrefslogtreecommitdiff
path: root/sw/source/ui/misc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-30 20:59:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-30 21:02:48 +0100
commitd1ffea3a272d61f1343047e86b4eeabe032aa352 (patch)
tree288876514cb6d00a6b15100d46b3dd9a0ee57df7 /sw/source/ui/misc
parent858292697c3624556922852d88623aaf72e0fccd (diff)
coverity#738909 Uninitialized scalar field
Change-Id: I332d57bd7a82a734e509afe24c0c716ce8a4e455
Diffstat (limited to 'sw/source/ui/misc')
-rw-r--r--sw/source/ui/misc/insfnote.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/sw/source/ui/misc/insfnote.cxx b/sw/source/ui/misc/insfnote.cxx
index de9b9bfc45fa..cacc4eb4ff84 100644
--- a/sw/source/ui/misc/insfnote.cxx
+++ b/sw/source/ui/misc/insfnote.cxx
@@ -167,11 +167,12 @@ IMPL_LINK( SwInsFootNoteDlg, NextPrevHdl, Button *, pBtn )
return 0;
}
-SwInsFootNoteDlg::SwInsFootNoteDlg(Window *pParent, SwWrtShell &rShell, bool bEd) :
- SvxStandardDialog(pParent, "InsertFootnoteDialog", "modules/swriter/ui/insertfootnote.ui"),
- rSh(rShell),
- bExtCharAvailable(false),
- bEdit(bEd)
+SwInsFootNoteDlg::SwInsFootNoteDlg(Window *pParent, SwWrtShell &rShell, bool bEd)
+ : SvxStandardDialog(pParent, "InsertFootnoteDialog", "modules/swriter/ui/insertfootnote.ui")
+ , rSh(rShell)
+ , eCharSet(RTL_TEXTENCODING_DONTKNOW)
+ , bExtCharAvailable(false)
+ , bEdit(bEd)
{
get(m_pNumberFrame, "numberingframe");
get(m_pNumberAutoBtn, "automatic");