summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-08-08 07:52:45 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-08-12 19:46:28 -0400
commitb26fd34f8aa9589dd66a8f4c5b0e6771a4529c03 (patch)
tree1a22a6f640455c74c8420de4f383970ee66bd469
parent6f8b0d419b99a02050a9dd8bdf04a6c86a48fe61 (diff)
Fix the (Windows) build. No idea how this was buildable on Linux.
Change-Id: I9c0701b1b8f30c36f45bbee0d95e92a59f9891fe
-rw-r--r--sc/source/filter/oox/formulabuffer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/oox/formulabuffer.cxx b/sc/source/filter/oox/formulabuffer.cxx
index 59518bc6be36..e4277c0b714d 100644
--- a/sc/source/filter/oox/formulabuffer.cxx
+++ b/sc/source/filter/oox/formulabuffer.cxx
@@ -33,12 +33,12 @@ using namespace ::com::sun::star::container;
namespace oox { namespace xls {
-FormulaBuffer::FormulaBuffer::SharedFormulaEntry::SharedFormulaEntry(
+FormulaBuffer::SharedFormulaEntry::SharedFormulaEntry(
const table::CellAddress& rAddr, const table::CellRangeAddress& rRange,
const OUString& rTokenStr, sal_Int32 nSharedId ) :
maAddress(rAddr), maRange(rRange), maTokenStr(rTokenStr), mnSharedId(nSharedId) {}
-FormulaBuffer::FormulaBuffer::SharedFormulaDesc::SharedFormulaDesc(
+FormulaBuffer::SharedFormulaDesc::SharedFormulaDesc(
const com::sun::star::table::CellAddress& rAddr, sal_Int32 nSharedId,
const OUString& rCellValue, sal_Int32 nValueType ) :
maAddress(rAddr), mnSharedId(nSharedId), maCellValue(rCellValue), mnValueType(nValueType) {}