[Libreoffice-commits] core.git: sc/source
Tor Lillqvist
tml at iki.fi
Mon May 27 22:01:25 PDT 2013
sc/source/filter/inc/condformatbuffer.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 61fffd72ac9f09b95faf266f29e643c7bff802bd
Author: Tor Lillqvist <tml at iki.fi>
Date: Tue May 28 08:00:53 2013 +0300
Fix compilation error with older compilers
Change-Id: If9eff90d91c79d942fec59fee4daedccf7c69a83
diff --git a/sc/source/filter/inc/condformatbuffer.hxx b/sc/source/filter/inc/condformatbuffer.hxx
index 2ea0f93..d009f04 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 );
More information about the Libreoffice-commits
mailing list