[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/inc

Kohei Yoshida kohei.yoshida at gmail.com
Tue Mar 26 19:10:32 PDT 2013


 sc/inc/cellform.hxx |    2 +-
 sc/inc/conditio.hxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c23d97793c0b781a0c52ddc4632a3804acfc2362
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Tue Mar 26 22:10:21 2013 -0400

    ScRefCellValue is actually a struct, not a class.
    
    Change-Id: Iadd6d706e5ba9d51cb82d4dd387e59318da1f322

diff --git a/sc/inc/cellform.hxx b/sc/inc/cellform.hxx
index 094eaff..373d6e6 100644
--- a/sc/inc/cellform.hxx
+++ b/sc/inc/cellform.hxx
@@ -27,7 +27,7 @@ class SvNumberFormatter;
 class Color;
 class ScDocument;
 class ScAddress;
-class ScRefCellValue;
+struct ScRefCellValue;
 
 enum ScForceTextFmt {
     ftDontForce,            // numbers as numbers
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx
index 8592bcb..832af26 100644
--- a/sc/inc/conditio.hxx
+++ b/sc/inc/conditio.hxx
@@ -37,7 +37,7 @@
 
 class ScFormulaCell;
 class ScTokenArray;
-class ScRefCellValue;
+struct ScRefCellValue;
 
 //  nOptions Flags
 #define SC_COND_NOBLANKS    1


More information about the Libreoffice-commits mailing list