summaryrefslogtreecommitdiff
path: root/oox/inc/oox/helper/helper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/inc/oox/helper/helper.hxx')
-rw-r--r--oox/inc/oox/helper/helper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/inc/oox/helper/helper.hxx b/oox/inc/oox/helper/helper.hxx
index bb9877008e89..ed1b2ec4cd72 100644
--- a/oox/inc/oox/helper/helper.hxx
+++ b/oox/inc/oox/helper/helper.hxx
@@ -198,7 +198,7 @@ template< typename Type >
class OptValue
{
public:
- inline explicit OptValue() : mbHasValue( false ) {}
+ inline explicit OptValue() : maValue(), mbHasValue( false ) {}
inline explicit OptValue( const Type& rValue ) : maValue( rValue ), mbHasValue( true ) {}
inline explicit OptValue( bool bHasValue, const Type& rValue ) : maValue( rValue ), mbHasValue( bHasValue ) {}