diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-18 18:29:22 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-19 13:40:24 -0400 |
commit | 945853ba9e9f1188c87f527866e7e8a1fd967a35 (patch) | |
tree | 05c77f5871eef7f1e514a17c71b35cbaa400f3da /sc | |
parent | fedb28e84614ac6c0f6076cca56b6c2c8b832198 (diff) |
Fix build breakage.
Change-Id: I94b9d17a045a9c17d9e97aa582d7572e0a21809b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 6 | ||||
-rw-r--r-- | sc/source/core/data/cell2.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/column3.cxx | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index f53089058064..6bde79796e52 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 db14d580b2af..412f85d9814e 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 ede8b925edb4..6305747c9c3d 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 5ddb3f1287ff..6ee449555b5a 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; |