fix indent

Change-Id: Ia3a7d5873815b5b7480b22fb4b3d7f41634c6257
This commit is contained in:
Caolán McNamara
2016-11-24 13:20:13 +00:00
parent 1cb07ff1c6
commit b870c1c4d7

View File

@@ -58,16 +58,15 @@ public:
bool IsDefinition()const { return( RSCEXP_DEF == cType ); }
bool IsNothing() const { return( RSCEXP_NOTHING == cType ); }
void SetLong( sal_Int32 lValue )
{
aExp.aLong.nHi = (short)(lValue >> 16);
aExp.aLong.nLo = (unsigned short)lValue;
cType = RSCEXP_LONG;
}
{
aExp.aLong.nHi = (short)(lValue >> 16);
aExp.aLong.nLo = (unsigned short)lValue;
cType = RSCEXP_LONG;
}
sal_Int32 GetLong() const
{
return aExp.aLong.nLo |
((sal_uInt32)aExp.aLong.nHi << 16);
}
{
return aExp.aLong.nLo | ((sal_uInt32)aExp.aLong.nHi << 16);
}
bool Evaluate( sal_Int32 * pValue ) const;
void AppendMacro( OStringBuffer & ) const;
};