diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-04 01:26:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-04 01:26:18 +0100 |
commit | 9a28ab67c1a274f016f88cdd94283fd5325ad30d (patch) | |
tree | 22082cd6b6ddc6d477629212d6d86ea6b2413b7c /starmath | |
parent | c65f89a05fccf2e635e7c48e74107c562c805805 (diff) |
valgrind: init nTypeFace
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/mathtype.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/starmath/source/mathtype.hxx b/starmath/source/mathtype.hxx index cfacad560290..e37d388f8e8a 100644 --- a/starmath/source/mathtype.hxx +++ b/starmath/source/mathtype.hxx @@ -64,14 +64,16 @@ class MathType public: MathType(String &rIn) : rRet(rIn), nHAlign(0), nVAlign(0), nDefaultSize(12), - nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), bIsSilent(sal_False) + nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), bIsSilent(sal_False), + nTypeFace(0) { Init(); } MathType(String &rIn,SmNode *pIn) : rRet(rIn), pTree(pIn), nHAlign(2), nVAlign(0), nInsertion(0), nDefaultSize(12), - nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), nSpec(0), bIsSilent(sal_False) + nLSize(0), nDSize(0), nCurSize(0), nLastSize(0), nSpec(0), bIsSilent(sal_False), + nTypeFace(0) { Init(); } |