summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlcelli.hxx
diff options
context:
space:
mode:
authorDaniel Bankston <daniel.e.bankston@gmail.com>2012-06-05 15:07:27 -0500
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-06-17 17:04:01 +0200
commitb39e4d439b6b0b7fad177967cadac3b822d5eb9f (patch)
tree666f4a142893df4b2db849829e9e97c1d3d48220 /sc/source/filter/xml/xmlcelli.hxx
parenta789ba1b71845c63e3bee770cd108001aa44c8ce (diff)
Reduce amount of casts between SCCOL, SCROW, and sal_Int32
Change-Id: If20c7ae8e90b41521215072a83654e6e90502129
Diffstat (limited to 'sc/source/filter/xml/xmlcelli.hxx')
-rw-r--r--sc/source/filter/xml/xmlcelli.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sc/source/filter/xml/xmlcelli.hxx b/sc/source/filter/xml/xmlcelli.hxx
index 858270afc671..e8fecfd0ce03 100644
--- a/sc/source/filter/xml/xmlcelli.hxx
+++ b/sc/source/filter/xml/xmlcelli.hxx
@@ -60,10 +60,12 @@ class ScXMLTableRowCellContext : public SvXMLImportContext
ScMyImpDetectiveObjVec* pDetectiveObjVec;
ScMyImpCellRangeSource* pCellRangeSource;
double fValue;
- sal_Int32 nMergedRows, nMergedCols;
- sal_Int32 nMatrixRows, nMatrixCols;
- sal_Int32 nRepeatedRows;
- sal_Int32 nCellsRepeated;
+ //~ sal_Int32 nMergedRows, nMergedCols;
+ //~ sal_Int32 nMatrixRows, nMatrixCols;
+ //~ sal_Int32 nRepeatedRows;
+ //~ sal_Int32 nCellsRepeated;
+ SCROW nMergedRows, nMatrixRows, nRepeatedRows;
+ SCCOL nMergedCols, nMatrixCols, nCellsRepeated;
ScXMLImport& rXMLImport;
formula::FormulaGrammar::Grammar eGrammar;
sal_Int16 nCellType;