diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 15:45:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-19 19:16:33 +0100 |
commit | 577c0818bcb43b4f281555af0c7c4724b3add03f (patch) | |
tree | 82ae55d95d01c00d2f12615337df2ee4e2869683 /sw/source | |
parent | 5f911c416b26f88fdb75ded501c98f1b8738cec2 (diff) |
CID#1038503 uninitialized member
Change-Id: I4ceb50cf957b70a43848bb78aeaddc7957d3ffd7
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/ui/chrdlg/drpcps.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/ui/chrdlg/drpcps.cxx b/sw/source/ui/chrdlg/drpcps.cxx index 3b9d182b2f74..2f3024630ac6 100644 --- a/sw/source/ui/chrdlg/drpcps.cxx +++ b/sw/source/ui/chrdlg/drpcps.cxx @@ -107,11 +107,13 @@ public: SwDropCapsPict(Window *pParent, WinBits nBits) : Control(pParent, nBits) , mpPage(NULL) + , mnLines(0) , mnTotLineH(0) , mnLineH(0) , mnTextH(0) - , mpPrinter( NULL ) - , mbDelPrinter( false ) + , mnDistance(00 + , mpPrinter(NULL) + , mbDelPrinter(false) {} void SetDropCapsPage(SwDropCapsPage* pPage) { mpPage = pPage; } |