diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-28 08:00:53 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-28 08:00:53 +0300 |
commit | 61fffd72ac9f09b95faf266f29e643c7bff802bd (patch) | |
tree | 7aa07c7eccfe282c654d0d2bad2251d22a087d5d | |
parent | a9438f38c0765d029c72495eb11ba63ff7f187ce (diff) |
Fix compilation error with older compilers
Change-Id: If9eff90d91c79d942fec59fee4daedccf7c69a83
-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 2ea0f93c1cdc..d009f044f9fc 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 ); |