diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-09 16:25:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-10 21:07:55 +0100 |
commit | c27fc13c9947170480b62058849f72ea779bc5b0 (patch) | |
tree | 319e7bd2163bcdce13751eeaad74ef4c9acf8e22 | |
parent | 351829b239b07a9126a7ec29cf9095e359c77adc (diff) |
coverity#708112 Uninitialized scalar field
Change-Id: I488f784430a252326466954bf4a29f4ddd72bd83
-rw-r--r-- | sc/source/ui/view/viewutil.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/ui/view/viewutil.cxx b/sc/source/ui/view/viewutil.cxx index 5e27bbf6b52e..342c6e56246a 100644 --- a/sc/source/ui/view/viewutil.cxx +++ b/sc/source/ui/view/viewutil.cxx @@ -391,6 +391,10 @@ void ScViewUtil::SetFullScreen( SfxViewShell& rViewShell, bool bSet ) ScUpdateRect::ScUpdateRect( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2 ) + : nNewStartX(0) + , nNewStartY(0) + , nNewEndX(0) + , nNewEndY(0) { PutInOrder( nX1, nX2 ); PutInOrder( nY1, nY2 ); |