diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-28 08:00:53 +0300 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-05-30 15:54:00 +0200 |
commit | 6272a497cdb97d2d6b697e0abfe74d42b97470ce (patch) | |
tree | cf7f1080c65d19c4b09fb01c3e844e00bac70b6b /sc | |
parent | 21431fa2231de5493235b276b5a1d007708f8099 (diff) |
Fix compilation error with older compilers
Change-Id: If9eff90d91c79d942fec59fee4daedccf7c69a83
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/condformatbuffer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/inc/condformatbuffer.hxx b/sc/source/filter/inc/condformatbuffer.hxx index c7b01aecc63a..d4994552a500 100644 --- a/sc/source/filter/inc/condformatbuffer.hxx +++ b/sc/source/filter/inc/condformatbuffer.hxx @@ -261,7 +261,7 @@ class ExtCfRule RuleType mnRuleType; void* mpTarget; public: - ExtCfRule(void* pTarget = NULL ) : mnRuleType( ExtCfRule::RuleType::UNKNOWN ), mpTarget(pTarget) {} + ExtCfRule(void* pTarget = NULL ) : mnRuleType( ExtCfRule::UNKNOWN ), mpTarget(pTarget) {} void finalizeImport(); void importDataBar( const AttributeList& rAttribs ); void importNegativeFillColor( const AttributeList& rAttribs ); |