summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/cellsh1.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-06-17 19:55:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-06-18 08:23:06 +0200
commit20b8c7f38ae1c03dc0405a2da006ab6b2dbf3627 (patch)
treedbdef33c3fe95d50f969690d7755ae2b0a02567e /sc/source/ui/view/cellsh1.cxx
parentca47989ad60b1414f92be22a1fbf4c1d1a92dd97 (diff)
create getter for ScCellValue::mpFormula
so we can assert that it has the correct tag type Change-Id: Iab13a6d6ea1783c69395f06f28732769e5fe8b18 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136059 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui/view/cellsh1.cxx')
-rw-r--r--sc/source/ui/view/cellsh1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 30a796e9f646..3c8e0fa061eb 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -3431,7 +3431,7 @@ void ScCellShell::ExecuteFillSingleEdit()
if (aCell.getType() == CELLTYPE_FORMULA)
{
aInit = "=";
- const ScTokenArray* pCode = aCell.mpFormula->GetCode();
+ const ScTokenArray* pCode = aCell.getFormula()->GetCode();
sc::TokenStringContext aCxt(rDoc, rDoc.GetGrammar());
aInit += pCode->CreateString(aCxt, aCurPos);
}