summaryrefslogtreecommitdiff
path: root/sc/inc/types.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-09-04 15:14:47 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-09-06 01:38:31 -0400
commit69047ec117cd2e0885efec1824e9c00555da4800 (patch)
tree6e5f0c29813a91ac4239e80d97789f43e364515d /sc/inc/types.hxx
parent2d8a60e517c35276051a82b569515b49896b5be9 (diff)
Correctly handle implicit intersection in group interpretation.
Change-Id: I2ea6f41ad4036a6f3f5d99097e83fd988aacd105
Diffstat (limited to 'sc/inc/types.hxx')
-rw-r--r--sc/inc/types.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/sc/inc/types.hxx b/sc/inc/types.hxx
index 5c11da518976..f03ccc0149ec 100644
--- a/sc/inc/types.hxx
+++ b/sc/inc/types.hxx
@@ -63,6 +63,19 @@ enum GroupCalcState
GroupCalcDisabled
};
+struct RangeMatrix
+{
+ ScMatrixRef mpMat;
+ sal_Int32 mnCol1;
+ sal_Int32 mnRow1;
+ sal_Int32 mnCol2;
+ sal_Int32 mnRow2;
+
+ RangeMatrix();
+
+ bool isRangeValid() const;
+};
+
}
#endif