[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - sc/source

Tor Lillqvist tml at iki.fi
Tue May 28 09:18:07 PDT 2013


 sc/source/filter/inc/condformatbuffer.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eee523f82fa3d258f720a4c2ea246b52ae141a93
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
    (cherry picked from commit 61fffd72ac9f09b95faf266f29e643c7bff802bd)

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