cui/uiconfig/ui/numberingpositionpage.ui | 5 +++++ sd/source/core/sdpage.cxx | 1 + 2 files changed, 6 insertions(+)
New commits: commit 03bab8b877299ae326b0209c92ce985dda31d780 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Jan 8 10:21:19 2026 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Jan 10 16:10:13 2026 +0100 add a11y name to preview widget Change-Id: I18fabddbbbfa1fc74fc4d2d6a3659708329986ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196835 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/cui/uiconfig/ui/numberingpositionpage.ui b/cui/uiconfig/ui/numberingpositionpage.ui index 9655272283ee..85b766809132 100644 --- a/cui/uiconfig/ui/numberingpositionpage.ui +++ b/cui/uiconfig/ui/numberingpositionpage.ui @@ -529,6 +529,11 @@ numbering and text:</property> <property name="can-focus">False</property> <property name="hexpand">True</property> <property name="vexpand">True</property> + <child internal-child="accessible"> + <object class="AtkObject" id="preview-atkobject"> + <property name="AtkObject::accessible-name" translatable="yes" context="numberingpositionpage|preview-atkobject">Preview</property> + </object> + </child> </object> </child> </object> commit 9b5c39d3b01f4364570d74aaf51aa8d115e3d7f0 Author: Caolán McNamara <[email protected]> AuthorDate: Fri Jan 9 16:29:32 2026 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sat Jan 10 16:10:04 2026 +0100 cid#1680311 Uninitialized scalar field Change-Id: Ia256200ee34f3394a925acf4722ff396b35c3243 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196934 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index a5cea90e493f..812b909cab72 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -122,6 +122,7 @@ SdPage::SdPage(SdDrawDocument& rNewDoc, bool bMasterPage) , meCharSet(osl_getThreadTextEncoding()) , mnPaperBin(PAPERBIN_PRINTER_SETTINGS) , mpPageLink(nullptr) +, mbIsCanvasPage(false) , mnTransitionType(0) , mnTransitionSubtype(0) , mbTransitionDirection(true)
