summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-06-20 13:38:06 -0500
committerEike Rathke <erack@redhat.com>2013-06-21 11:36:12 +0000
commit6bf42bfc5af08ea1c2f40dbc7a142cff88a3df79 (patch)
treeb9f31de318aa1b93d20a6936988061dfafd1cc0a
parentaa1a988c7403cac81638c195b753fab7ac3600f9 (diff)
coverity#707538 : unitialized scalar variables
Change-Id: Ie0cd3f1d43398bf4023b5b4503e3519c8005e149 Reviewed-on: https://gerrit.libreoffice.org/4407 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r--sfx2/source/inc/workwin.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/source/inc/workwin.hxx b/sfx2/source/inc/workwin.hxx
index 1d83befb2425..e0ab8af15459 100644
--- a/sfx2/source/inc/workwin.hxx
+++ b/sfx2/source/inc/workwin.hxx
@@ -57,6 +57,8 @@ struct SfxObjectBar_Impl
SfxObjectBar_Impl() :
nId(0),
nMode(0),
+ nPos(0),
+ nIndex(0),
bDestroy(sal_False),
pIFace(0)
{}