sd/source/core/stlsheet.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f078937179c4490df273b95cc8c29a216f9184ba Author: Kevin Suo <suokunl...@126.com> AuthorDate: Thu Nov 17 12:10:31 2022 +0800 Commit: Heiko Tietze <heiko.tie...@documentfoundation.org> CommitDate: Tue Nov 22 14:55:18 2022 +0100 tdf#138111: Fix apparent copy-paste error in ApiNameMap for sd style "A0" As introduced in commit 99102d4263189d347c7a7d0df8fd782e8c4c8ad5. Change-Id: Iece8595a401df7bd5a514244d4a4fc825a49f9de Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142819 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tie...@documentfoundation.org> diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx index 14a0b13dd15c..1c11e5fea39d 100644 --- a/sd/source/core/stlsheet.cxx +++ b/sd/source/core/stlsheet.cxx @@ -598,7 +598,7 @@ struct ApiNameMap { std::u16string_view(u"Title A4"), HID_POOLSHEET_A4_TITLE }, { std::u16string_view(u"Heading A4"), HID_POOLSHEET_A4_HEADLINE }, { std::u16string_view(u"Text A4"), HID_POOLSHEET_A4_TEXT }, - { std::u16string_view(u"A4"), HID_POOLSHEET_A0 }, + { std::u16string_view(u"A0"), HID_POOLSHEET_A0 }, { std::u16string_view(u"Title A0"), HID_POOLSHEET_A0_TITLE }, { std::u16string_view(u"Heading A0"), HID_POOLSHEET_A0_HEADLINE }, { std::u16string_view(u"Text A0"), HID_POOLSHEET_A0_TEXT },