diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-09-06 01:18:26 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-09-06 01:38:32 -0400 |
commit | 8e6b22b12322175e9aff643af45f275cb8c9cc5e (patch) | |
tree | 463016b5e8e8a001d398e3f2455213c4e9b90065 /sc/inc/token.hxx | |
parent | 7969bb659ef78ec6e1aaaf922757419795a823de (diff) |
Wrong place to apply implicit intersection. Do it at the very last.
Change-Id: I4b1e9d136d45f169ad1c1efee2275bab7dfe0f49
Diffstat (limited to 'sc/inc/token.hxx')
-rw-r--r-- | sc/inc/token.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx index 32cdf5ad1869..a852dd87b1fd 100644 --- a/sc/inc/token.hxx +++ b/sc/inc/token.hxx @@ -36,6 +36,12 @@ // Matrix token constants. #define MATRIX_TOKEN_HAS_RANGE 1 +namespace sc { + +struct RangeMatrix; + +} + class ScJumpMatrix; typedef ::std::vector< ScComplexRefData > ScRefList; @@ -190,6 +196,7 @@ class ScMatrixRangeToken : public ScToken ScComplexRefData maRef; public: ScMatrixRangeToken( const ScMatrixRef& p, const ScComplexRefData& rRef ); + ScMatrixRangeToken( const sc::RangeMatrix& rMat ); ScMatrixRangeToken( const ScMatrixRangeToken& r ); virtual sal_uInt8 GetByte() const; |