summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 09:23:08 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 09:40:06 +0100
commita774c46673f6856e5d0c799b630954cf11de0935 (patch)
treecf2e8d283471c6d135937889e8e55659a910a358 /sw
parent055eb8ed0c946bfb2fb68762eab5a52917f1e3ae (diff)
coverity#708522 Uninitialized scalar field
Change-Id: I1396d5f2f042e5500b61dc578a8d5089374fa8f8
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/uibase/ribbar/conrect.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sw/source/core/uibase/ribbar/conrect.cxx b/sw/source/core/uibase/ribbar/conrect.cxx
index 9b7aa478e549..daa266a12b64 100644
--- a/sw/source/core/uibase/ribbar/conrect.cxx
+++ b/sw/source/core/uibase/ribbar/conrect.cxx
@@ -38,10 +38,11 @@
ConstRectangle::ConstRectangle( SwWrtShell* pWrtShell, SwEditWin* pEditWin,
SwView* pSwView )
- : SwDrawBase( pWrtShell, pEditWin, pSwView ),
- bMarquee(false),
+ : SwDrawBase( pWrtShell, pEditWin, pSwView )
+ , bMarquee(false)
+ , bCapVertical(false)
// #93382#
- mbVertical(false)
+ , mbVertical(false)
{
}