diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-27 02:51:48 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-27 03:24:17 -0600 |
commit | 06b7ba3b6701110709b47248180c75a325ff9a31 (patch) | |
tree | 55b44a60e79dff9aa2d6d938d5ba1d2487790f10 | |
parent | 158788599b2ad2d59b9c4b9fffe60537f6f5aa26 (diff) |
coverity#1038501 : Uninitialized scalar field
Change-Id: I6449fcdfd12355713f07a751f2e95883c7c76bce
-rw-r--r-- | starmath/source/dialog.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index 0ede24777ee4..7e53ecb197a5 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -1041,6 +1041,11 @@ void SmAlignDialog::WriteTo(SmFormat &rFormat) const SmShowSymbolSetWindow::SmShowSymbolSetWindow(Window *pParent, WinBits nStyle) : Control(pParent, nStyle) , m_pVScrollBar(0) + , nLen(0) + , nRows(0) + , nColumns(0) + , nXOffset(0) + , nYOffset(0) , nSelectSymbol(SYMBOL_NONE) { ColorData nBgCol, nTxtCol; |