Kaydet (Commit) b211b8b2 authored tarafından Caolán McNamara's avatar Caolán McNamara

Related: rhbz#1014990 valgrind reports yet another unint variable

Change-Id: Idf6a0a1e12fffee6c090add41247723f1d9cf576
üst e0840f70
......@@ -26,6 +26,7 @@
#include <rtl/textenc.h>
#include <com/sun/star/awt/FontDescriptor.hpp>
#include <com/sun/star/lang/Locale.hpp>
#include <editeng/svxenum.hxx>
#include <boost/shared_ptr.hpp>
......@@ -62,17 +63,24 @@ struct SOParagraph
sal_Bool bNumberingIsNumber;
SOParagraph()
: bExtendedParameters(false)
, nParaFlags(0)
, nBulletFlags(0)
, nNumberingType(SVX_NUM_NUMBER_NONE)
, nHorzAdjust(0)
, nBulletColor(0)
, nBulletOfs(0)
, nStartWith(0)
, nTextOfs(0)
, nBulletRealSize(0)
, nDepth(0)
, cBulletId(0)
, bExtendedBulletsUsed(false)
, nBulletId(0xffff)
, nMappedNumType(0)
, bNumberingIsNumber(true)
{
nDepth = 0;
bExtendedParameters = sal_False;
nParaFlags = 0;
nBulletFlags = 0;
nBulletOfs = 0;
nTextOfs = 0;
bExtendedBulletsUsed = sal_False;
nBulletId = 0xffff;
bNumberingIsNumber = sal_True;
};
}
};
class PropStateValue : public PropValue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment