summaryrefslogtreecommitdiff
path: root/sc/inc/scmatrix.hxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2015-04-02 01:13:53 +0200
committerEike Rathke <erack@redhat.com>2015-04-02 01:31:29 +0200
commit636dd43c1cc10ca5f609fe23ee388d9679a60f2e (patch)
tree1ba27a2fcbfa6c0194cb8aa07dffa3ef6f9ed3c6 /sc/inc/scmatrix.hxx
parent7b45c5cc05ae1d38d3e201153badefab845dfcc1 (diff)
use error value instead of string in array/matrix, tdf#89387 tdf#42481 related
Hopefully tdf#90391 will be solved, else we'll have to revert all MatOp work and do this change on the previous code. Change-Id: I4789ccf389558f3687d90c600a4f1a27c24a20d9
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r--sc/inc/scmatrix.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx
index e85054e22b52..f1fbe8e7bbac 100644
--- a/sc/inc/scmatrix.hxx
+++ b/sc/inc/scmatrix.hxx
@@ -387,13 +387,13 @@ public:
void GetDoubleArray( std::vector<double>& rArray, bool bEmptyAsZero = true ) const;
void MergeDoubleArray( std::vector<double>& rArray, Op eOp ) const;
- void NotOp(svl::SharedString aString, ScMatrix& rMat);
- void NegOp(svl::SharedString aString, ScMatrix& rMat);
- void AddOp(svl::SharedString aString, double fVal, ScMatrix& rMat);
- void SubOp(bool bFlag, svl::SharedString aString, double fVal, ScMatrix& rMat);
- void MulOp(svl::SharedString aString, double fVal, ScMatrix& rMat);
- void DivOp(bool bFlag, svl::SharedString aString, double fVal, ScMatrix& rMat);
- void PowOp(bool bFlag, svl::SharedString aString, double fVal, ScMatrix& rMat);
+ void NotOp(ScMatrix& rMat);
+ void NegOp(ScMatrix& rMat);
+ void AddOp(double fVal, ScMatrix& rMat);
+ void SubOp(bool bFlag, double fVal, ScMatrix& rMat);
+ void MulOp(double fVal, ScMatrix& rMat);
+ void DivOp(bool bFlag, double fVal, ScMatrix& rMat);
+ void PowOp(bool bFlag, double fVal, ScMatrix& rMat);
ScMatrix& operator+= ( const ScMatrix& r );