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

Kohei Yoshida kohei.yoshida at gmail.com
Mon Mar 18 15:30:02 PDT 2013


 sc/qa/unit/ucalc.cxx            |    6 +++---
 sc/source/core/data/cell2.cxx   |    2 ++
 sc/source/core/data/column.cxx  |    1 +
 sc/source/core/data/column3.cxx |    2 ++
 4 files changed, 8 insertions(+), 3 deletions(-)

New commits:
commit 84e8f0c171c835abb4ccc62cd84ea9ee0ba1491b
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Mon Mar 18 18:29:22 2013 -0400

    Fix build breakage.
    
    Change-Id: I94b9d17a045a9c17d9e97aa582d7572e0a21809b

diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index f530890..6bde797 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -117,7 +117,7 @@ public:
     void testCollator();
     void testRangeList();
     void testInput();
-    void testFormulaGrouping();
+    void testFormulaHashAndTag();
     void testCellFunctions();
     void testCopyToDocument();
     /**
@@ -276,7 +276,7 @@ public:
     CPPUNIT_TEST(testCollator);
     CPPUNIT_TEST(testRangeList);
     CPPUNIT_TEST(testInput);
-    CPPUNIT_TEST(testFormulaGrouping);
+    CPPUNIT_TEST(testFormulaHashAndTag);
     CPPUNIT_TEST(testCellFunctions);
     CPPUNIT_TEST(testCopyToDocument);
     CPPUNIT_TEST(testSheetsFunc);
@@ -1197,7 +1197,7 @@ void testFuncINDIRECT(ScDocument* pDoc)
     }
 }
 
-void Test::testFormulaGrouping()
+void Test::testFormulaHashAndTag()
 {
     m_pDoc->InsertTab(0, "Test");
 
diff --git a/sc/source/core/data/cell2.cxx b/sc/source/core/data/cell2.cxx
index db14d58..412f85d 100644
--- a/sc/source/core/data/cell2.cxx
+++ b/sc/source/core/data/cell2.cxx
@@ -42,6 +42,8 @@
 #include "patattr.hxx"
 #include <rtl/strbuf.hxx>
 
+#include <cstdio>
+
 using namespace formula;
 
 // STATIC DATA -----------------------------------------------------------
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index 90f6efa..4853fe94 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -37,6 +37,7 @@
 
 #include <cstring>
 #include <map>
+#include <cstdio>
 
 using ::editeng::SvxBorderLine;
 using namespace formula;
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index 5ddb3f1..6ee4495 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -48,6 +48,8 @@
 
 #include <com/sun/star/i18n/LocaleDataItem.hpp>
 
+#include <cstdio>
+
 using ::com::sun::star::i18n::LocaleDataItem;
 using ::rtl::OUString;
 using ::rtl::OUStringBuffer;


More information about the Libreoffice-commits mailing list