summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-04-24 17:59:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-04-25 12:48:11 +0200
commit166c8f16aff45b444ff3d0a1c1e751d1547a27d8 (patch)
treeffe34ef67c05146c7e120e817b29ba4ddaf7af4d /sc/source
parentf96c2af0157383ac097a2488ed9f0ba1639681ea (diff)
loplugin:unusedfields
Change-Id: I52af3509afde02dae494747527ab800590682fa3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114591 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/core/tool/scmatrix.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index 6dad97eee6a0..ad7f4c788df7 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -3310,17 +3310,15 @@ struct MatOp
private:
TOp maOp;
ScInterpreter* mpErrorInterpreter;
- svl::SharedString maString;
double mfVal;
public:
typedef double number_value_type;
MatOp( TOp aOp, ScInterpreter* pErrorInterpreter,
- double fVal = 0.0, const svl::SharedString& rString = svl::SharedString() ):
+ double fVal = 0.0 ):
maOp(aOp),
mpErrorInterpreter(pErrorInterpreter),
- maString(rString),
mfVal(fVal)
{
if (mpErrorInterpreter)