diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-09-15 10:52:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-09-16 14:21:16 +0200 |
commit | 120588850a43910fd2a6cd5ff903feece714b525 (patch) | |
tree | ed0947dcf23fa105744ef431d16c84556aa263c3 /sc/qa | |
parent | 2d873932bb282667a19c05e939146d5ad22c28d4 (diff) |
ScEditableTester ctor never passed a null ScDocument*
Change-Id: I29338e400ba489e57571cb7711d92f611d5ce8d8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102841
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/ucalc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx index 8fc40185e88d..e15f8e3e3425 100644 --- a/sc/qa/unit/ucalc.cxx +++ b/sc/qa/unit/ucalc.cxx @@ -2026,7 +2026,7 @@ void Test::testMatrixEditable() // Check to make sure A3:A4 combined is editable. ScEditableTester aTester; - aTester.TestSelection(m_pDoc, aMark); + aTester.TestSelection(*m_pDoc, aMark); CPPUNIT_ASSERT(aTester.IsEditable()); m_pDoc->DeleteTab(0); |