summaryrefslogtreecommitdiff
path: root/vcl/qa/cppunit/pdfexport
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-07-10 20:38:25 +0200
committerMichael Stahl <michael.stahl@allotropia.de>2023-07-11 12:17:07 +0200
commit1ae1f76caeef35a0db7705dd0c330936a77b6a8c (patch)
treed33d3b585fd36c7a3e9a4609c29ceaea3440715d /vcl/qa/cppunit/pdfexport
parent6048355f479174d8f27d569542400c7b34b07df6 (diff)
tdf#152234 vcl: Role values are lowercase
Old version 3 of PAC throws exceptions if these are capitalized; presumably this is case sensitive, and all-lowercase unlike everything else. Change-Id: Ifc0cef38e333123e810376ab6a7630443d253841 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154282 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'vcl/qa/cppunit/pdfexport')
-rw-r--r--vcl/qa/cppunit/pdfexport/pdfexport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index f5de0480e4d4..5e26c693197d 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -4260,7 +4260,7 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, testFormControlAnnot)
CPPUNIT_ASSERT_EQUAL(OString("PrintField"), pO->GetValue());
auto pRole = dynamic_cast<vcl::filter::PDFNameElement*>(pAObj->Lookup("Role"));
CPPUNIT_ASSERT(pRole);
- CPPUNIT_ASSERT_EQUAL(OString("Cb"), pRole->GetValue());
+ CPPUNIT_ASSERT_EQUAL(OString("cb"), pRole->GetValue());
auto pKids = dynamic_cast<vcl::filter::PDFArrayElement*>(pStructElem->Lookup("K"));
auto nMCID(0);
auto nRef(0);