summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsc/inc/rscdef.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/rsc/inc/rscdef.hxx b/rsc/inc/rscdef.hxx
index fafd5d93f746..d85657f89ebe 100644
--- a/rsc/inc/rscdef.hxx
+++ b/rsc/inc/rscdef.hxx
@@ -83,7 +83,10 @@ public:
RscId( RscDefine * pEle );
RscId( sal_Int32 lNumber )
- { aExp.SetLong( lNumber ); }
+ {
+ aExp.cUnused = false;
+ aExp.SetLong( lNumber );
+ }
RscId( const RscExpType & rExpType )
{ Create( rExpType ); }