summaryrefslogtreecommitdiff
path: root/sc/inc/refdata.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 21:54:00 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-30 23:50:04 -0400
commit61812b9311f333ca345714a5112de9d19b580a8a (patch)
tree0cd5136e61116ec8f6e5555f747b96349ad2c40a /sc/inc/refdata.hxx
parentc93e441b8ae9323b948546e61031ca31a584230c (diff)
Now the reference object no longer stores both absolute and relative.
This is exactly what we needed. Change-Id: I0e8d3064d1ea52c8d502d89f322b41435284d717
Diffstat (limited to 'sc/inc/refdata.hxx')
-rw-r--r--sc/inc/refdata.hxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx
index 0d077ce4cd66..2d942999123a 100644
--- a/sc/inc/refdata.hxx
+++ b/sc/inc/refdata.hxx
@@ -29,12 +29,9 @@
struct SC_DLLPUBLIC ScSingleRefData
{
private:
- SCsCOL nCol; ///< Absolute values
- SCsROW nRow;
- SCsTAB nTab;
- SCsCOL nRelCol; ///< Values relative to the position
- SCsROW nRelRow;
- SCsTAB nRelTab;
+ SCCOL mnCol;
+ SCROW mnRow;
+ SCTAB mnTab;
union
{