summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-28 08:00:53 +0300
committerNoel Power <noel.power@suse.com>2013-05-28 17:17:45 +0100
commiteee523f82fa3d258f720a4c2ea246b52ae141a93 (patch)
tree5bed1416afa60b38df56ab0120b9c239396c098c /sc
parent5c0a2940428c5c4b8451ee4e9ce30f0b7739f3c8 (diff)
Fix compilation error with older compilers
Change-Id: If9eff90d91c79d942fec59fee4daedccf7c69a83 (cherry picked from commit 61fffd72ac9f09b95faf266f29e643c7bff802bd)
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/condformatbuffer.hxx2
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 );