summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-11-24 13:20:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-11-24 14:56:13 +0000
commitb870c1c4d7f3598265ab50b70665b858fc73defc (patch)
treeb74e6e450eb4fb11f37b0d599a2be05547ad857e /rsc
parent1cb07ff1c6c1fe7e81f2edcab1f4a1cd515c24b4 (diff)
fix indent
Change-Id: Ia3a7d5873815b5b7480b22fb4b3d7f41634c6257
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rscdef.hxx17
1 files changed, 8 insertions, 9 deletions
diff --git a/rsc/inc/rscdef.hxx b/rsc/inc/rscdef.hxx
index a4f7708c63e2..2a218180df84 100644
--- a/rsc/inc/rscdef.hxx
+++ b/rsc/inc/rscdef.hxx
@@ -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;
};