diff options
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/subsequent_export-test.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx index 8f471b175148..1f8b648d81c6 100644 --- a/sc/qa/unit/subsequent_export-test.cxx +++ b/sc/qa/unit/subsequent_export-test.cxx @@ -770,7 +770,7 @@ void ScExportTest::testProtectionKeyODS_UTF16LErtlSHA1() ScDocument& rDoc = xShell->GetDocument(); ScDocProtection *const pDocProt(rDoc.GetDocProtection()); CPPUNIT_ASSERT(pDocProt->verifyPassword(password)); - ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); + const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); CPPUNIT_ASSERT(pTabProt->verifyPassword(password)); // we can't assume that the user entered the password; check that we @@ -793,7 +793,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA1() ScDocument& rDoc = xShell->GetDocument(); ScDocProtection *const pDocProt(rDoc.GetDocProtection()); CPPUNIT_ASSERT(pDocProt->verifyPassword(password)); - ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); + const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); CPPUNIT_ASSERT(pTabProt->verifyPassword(password)); // we can't assume that the user entered the password; check that we @@ -816,7 +816,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA256ODF12() ScDocument& rDoc = xShell->GetDocument(); ScDocProtection *const pDocProt(rDoc.GetDocProtection()); CPPUNIT_ASSERT(pDocProt->verifyPassword(password)); - ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); + const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); CPPUNIT_ASSERT(pTabProt->verifyPassword(password)); // we can't assume that the user entered the password; check that we @@ -839,7 +839,7 @@ void ScExportTest::testProtectionKeyODS_UTF8SHA256W3C() ScDocument& rDoc = xShell->GetDocument(); ScDocProtection *const pDocProt(rDoc.GetDocProtection()); CPPUNIT_ASSERT(pDocProt->verifyPassword(password)); - ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); + const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); CPPUNIT_ASSERT(pTabProt->verifyPassword(password)); // we can't assume that the user entered the password; check that we @@ -862,7 +862,7 @@ void ScExportTest::testProtectionKeyODS_XL_SHA1() ScDocument& rDoc = xShell->GetDocument(); ScDocProtection *const pDocProt(rDoc.GetDocProtection()); CPPUNIT_ASSERT(pDocProt->verifyPassword(password)); - ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); + const ScTableProtection *const pTabProt(rDoc.GetTabProtection(0)); CPPUNIT_ASSERT(pTabProt->verifyPassword(password)); // we can't assume that the user entered the password; check that we @@ -3450,7 +3450,7 @@ namespace { void testSheetProtection_Impl(const ScDocument& rDoc) { CPPUNIT_ASSERT(rDoc.IsTabProtected(0)); - ScTableProtection* pTabProtection = rDoc.GetTabProtection(0); + const ScTableProtection* pTabProtection = rDoc.GetTabProtection(0); CPPUNIT_ASSERT(pTabProtection); CPPUNIT_ASSERT(pTabProtection->isOptionEnabled(ScTableProtection::SELECT_UNLOCKED_CELLS)); CPPUNIT_ASSERT(!pTabProtection->isOptionEnabled(ScTableProtection::SELECT_LOCKED_CELLS)); |