summaryrefslogtreecommitdiff
path: root/framework/source/layoutmanager/toolbarlayoutmanager.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-08 12:52:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-08 14:25:06 +0000
commit51a954809aebd9f10449a4b9c9d05c25e2a6d668 (patch)
treeb4b9de91a4bcea804b0044fe9b1d8c2cd1cca54a /framework/source/layoutmanager/toolbarlayoutmanager.hxx
parente769d718b11065de1d61edca3c25549afa9cc871 (diff)
coverity#707879 Uninitialized scalar field
Change-Id: I618fa64876dc27a3d3ced9281f1b02b97a983166
Diffstat (limited to 'framework/source/layoutmanager/toolbarlayoutmanager.hxx')
-rw-r--r--framework/source/layoutmanager/toolbarlayoutmanager.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.hxx b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
index b4cbb1738883..8062eb32cf16 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.hxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.hxx
@@ -184,7 +184,12 @@ class ToolbarLayoutManager : public ::cppu::WeakImplHelper3< ::com::sun::star::a
typedef std::vector< UIElement > UIElementVector;
struct SingleRowColumnWindowData
{
- SingleRowColumnWindowData() : nVarSize( 0 ), nStaticSize( 0 ), nSpace( 0 ) {}
+ SingleRowColumnWindowData()
+ : nVarSize(0)
+ , nStaticSize(0)
+ , nSpace(0)
+ , nRowColumn(0)
+ {}
std::vector< OUString > aUIElementNames;
std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > > aRowColumnWindows;