diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-22 00:14:35 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-22 01:43:48 +0100 |
commit | 3d6cedd70b3c79b3ebb65c2662df420a8acb0818 (patch) | |
tree | ce37900d5367ad0c17ad179ff4e8f9872c64980e /sc/inc/scmatrix.hxx | |
parent | 52474424f3672a052e8a90b5e8e584c32fdacfbe (diff) |
improve performance of some matrix operations, related fdo#83187
Change-Id: I0e6816a7f0d2dc051dff6a462724cb4a3c155289
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r-- | sc/inc/scmatrix.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx index 1e4c74ff99b3..a5117bee3278 100644 --- a/sc/inc/scmatrix.hxx +++ b/sc/inc/scmatrix.hxx @@ -379,6 +379,8 @@ public: void GetDoubleArray( std::vector<double>& rArray, bool bEmptyAsZero = true ) const; void MergeDoubleArray( std::vector<double>& rArray, Op eOp ) const; + void SubAddOp(bool bSub, double fVal, svl::SharedString aString, ScMatrix& rMat); + ScMatrix& operator+= ( const ScMatrix& r ); #if DEBUG_MATRIX |