summaryrefslogtreecommitdiffstats
path: root/starmath
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-04 01:26:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-04 01:26:18 +0100
commit9a28ab67c1a274f016f88cdd94283fd5325ad30d (patch)
tree22082cd6b6ddc6d477629212d6d86ea6b2413b7c /starmath
parentadd another regression test here, an expected fail (diff)
downloadcore-9a28ab67c1a274f016f88cdd94283fd5325ad30d.tar.gz
core-9a28ab67c1a274f016f88cdd94283fd5325ad30d.zip
valgrind: init nTypeFace
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/mathtype.hxx6
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();
}