include/vcl/tabs.hrc | 5 sw/source/ui/envelp/envlop1.cxx | 11 + sw/source/ui/misc/docfnote.cxx | 8 - sw/source/ui/misc/outline.cxx | 8 - sw/uiconfig/swriter/ui/envdialog.ui | 70 ---------- sw/uiconfig/swriter/ui/footendnotedialog.ui | 46 ------ sw/uiconfig/swriter/ui/outlinenumbering.ui | 193 +++++++--------------------- 7 files changed, 79 insertions(+), 262 deletions(-)
New commits: commit 4a3facf394783a37dce0a97631ee99828374387a Author: Heiko Tietze <tietze.he...@gmail.com> AuthorDate: Wed Aug 6 14:44:39 2025 +0200 Commit: Heiko Tietze <heiko.tie...@documentfoundation.org> CommitDate: Wed Aug 6 19:09:49 2025 +0200 Resolves tdf#167832 - VT style to n<4 dialogs in Writer Change-Id: Iad4842053c2e6fc1ac142163dca4b532fcbe1800 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189005 Reviewed-by: Heiko Tietze <heiko.tie...@documentfoundation.org> Tested-by: Jenkins diff --git a/include/vcl/tabs.hrc b/include/vcl/tabs.hrc index 624a49e37f09..f572451a6bfe 100644 --- a/include/vcl/tabs.hrc +++ b/include/vcl/tabs.hrc @@ -55,6 +55,7 @@ inline constexpr TabData RID_TAB_FOOTER{ NC_("RID_TAB_FOOTER", "Footer"), u"inse inline constexpr TabData RID_TAB_PAGE{ NC_("RID_TAB_PAGE", "Page"), u"attributepagesize.png"_ustr }; inline constexpr TabData RID_TAB_COLUMNS{ NC_("RID_TAB_COLUMNS", "Columns"), u"pagecolumntype.png"_ustr }; inline constexpr TabData RID_TAB_FOOTNOTES{ NC_("RID_TAB_FOOTNOTES", "Footnote"), u"footnotedialog.png"_ustr }; +inline constexpr TabData RID_TAB_ENDNOTES{ NC_("RID_TAB_ENDNOTES", "Endnote"), u"insertendnote.png"_ustr }; inline constexpr TabData RID_TAB_TEXTGRID{ NC_("RID_TAB_TEXTGRID", "Text Grid"), u"gridvisible.png"_ustr }; // list inline constexpr TabData RID_TAB_UNOORDERED{ NC_("RID_TAB_UNOORDERED", "Unordered"), u"defaultbullet.png"_ustr }; @@ -129,6 +130,10 @@ inline constexpr TabData RID_TAB_NOTEBOOKBARS{ NC_("RID_TAB_NOTEBOOKBARS", "Note inline constexpr TabData RID_TAB_CONTEXTMENUS{ NC_("RID_TAB_CONTEXTMENUS", "Context Menus"), u"listbox.png"_ustr }; inline constexpr TabData RID_TAB_KEYBOARD{ NC_("RID_TAB_KEYBOARD", "Keyboard"), u"underline.png"_ustr }; inline constexpr TabData RID_TAB_EVENTS{ NC_("RID_TAB_EVENTS", "Events"), u"closedoc.png"_ustr }; +// envelope +inline constexpr TabData RID_TAB_ENVELOPE{ NC_("RID_TAB_ENVELOPE", "Envelope"), u"insertenvelope.png"_ustr }; +inline constexpr TabData RID_TAB_ENV_FORMAT{ NC_("RID_TAB_ENV_FORMAT", "Format"), u"distributeverttop.png"_ustr }; +inline constexpr TabData RID_TAB_PRINTER{ NC_("RID_TAB_PRINTER", "Printer"), u"printlayout.png"_ustr }; static OUString TabResId(TranslateId aId) { diff --git a/sw/source/ui/envelp/envlop1.cxx b/sw/source/ui/envelp/envlop1.cxx index b7ac43558448..30ceda3997a5 100644 --- a/sw/source/ui/envelp/envlop1.cxx +++ b/sw/source/ui/envelp/envlop1.cxx @@ -36,6 +36,8 @@ #include <comphelper/string.hxx> +#include <vcl/tabs.hrc> + using namespace ::com::sun::star::uno; using namespace ::com::sun::star; @@ -127,9 +129,12 @@ SwEnvDlg::SwEnvDlg(weld::Window* pParent, const SfxItemSet& rSet, GetUserButton()->set_label(m_xModify->get_label()); } - AddTabPage(u"envelope"_ustr, SwEnvPage::Create, nullptr); - AddTabPage(u"format"_ustr, SwEnvFormatPage::Create, nullptr); - AddTabPage(u"printer"_ustr, SwEnvPrtPage::Create, nullptr); + AddTabPage(u"envelope"_ustr, TabResId(RID_TAB_ENVELOPE.aLabel), SwEnvPage::Create, + RID_L + RID_TAB_ENVELOPE.sIconName); + AddTabPage(u"format"_ustr, TabResId(RID_TAB_ENV_FORMAT.aLabel), SwEnvFormatPage::Create, + RID_L + RID_TAB_ENV_FORMAT.sIconName); + AddTabPage(u"printer"_ustr, TabResId(RID_TAB_PRINTER.aLabel), SwEnvPrtPage::Create, + RID_L + RID_TAB_PRINTER.sIconName); } SwEnvDlg::~SwEnvDlg() diff --git a/sw/source/ui/misc/docfnote.cxx b/sw/source/ui/misc/docfnote.cxx index 6bb3277df01b..96e05cf8eeda 100644 --- a/sw/source/ui/misc/docfnote.cxx +++ b/sw/source/ui/misc/docfnote.cxx @@ -36,6 +36,8 @@ #include <names.hxx> #include <memory> +#include <vcl/tabs.hrc> + SwFootNoteOptionDlg::SwFootNoteOptionDlg(weld::Window *pParent, SwWrtShell &rS) : SfxTabDialogController(pParent, u"modules/swriter/ui/footendnotedialog.ui"_ustr, u"FootEndnoteDialog"_ustr) , m_rSh( rS ) @@ -44,8 +46,10 @@ SwFootNoteOptionDlg::SwFootNoteOptionDlg(weld::Window *pParent, SwWrtShell &rS) GetOKButton().connect_clicked(LINK(this, SwFootNoteOptionDlg, OkHdl)); - AddTabPage(u"footnotes"_ustr, SwFootNoteOptionPage::Create, nullptr); - AddTabPage(u"endnotes"_ustr, SwEndNoteOptionPage::Create, nullptr); + AddTabPage(u"footnotes"_ustr, TabResId(RID_TAB_FOOTNOTES.aLabel), SwFootNoteOptionPage::Create, + RID_L + RID_TAB_FOOTNOTES.sIconName); + AddTabPage(u"endnotes"_ustr, TabResId(RID_TAB_ENDNOTES.aLabel), SwEndNoteOptionPage::Create, + RID_L + RID_TAB_ENDNOTES.sIconName); } void SwFootNoteOptionDlg::PageCreated(const OUString& /*rId*/, SfxTabPage &rPage) diff --git a/sw/source/ui/misc/outline.cxx b/sw/source/ui/misc/outline.cxx index 48286ad60274..fd434c17fc42 100644 --- a/sw/source/ui/misc/outline.cxx +++ b/sw/source/ui/misc/outline.cxx @@ -47,6 +47,8 @@ #include <IDocumentOutlineNodes.hxx> #include <names.hxx> +#include <vcl/tabs.hrc> + using namespace ::com::sun::star; namespace { @@ -162,8 +164,10 @@ SwOutlineTabDialog::SwOutlineTabDialog(weld::Window* pParent, const SfxItemSet* SetActNumLevel(nTmp < 0 ? USHRT_MAX : (1 << nTmp)); } - AddTabPage(u"position"_ustr, &SwNumPositionTabPage::Create, nullptr); - AddTabPage(u"numbering"_ustr, &SwOutlineSettingsTabPage::Create, nullptr); + AddTabPage(u"numbering"_ustr, TabResId(RID_TAB_NUMBERING.aLabel), + &SwOutlineSettingsTabPage::Create, RID_L + RID_TAB_NUMBERING.sIconName); + AddTabPage(u"position"_ustr, TabResId(RID_TAB_POSITION.aLabel), &SwNumPositionTabPage::Create, + RID_L + RID_TAB_POSITION.sIconName); UIName sHeadline; sal_uInt16 i; diff --git a/sw/uiconfig/swriter/ui/envdialog.ui b/sw/uiconfig/swriter/ui/envdialog.ui index a0aa3428c1de..07fef9a58d6b 100644 --- a/sw/uiconfig/swriter/ui/envdialog.ui +++ b/sw/uiconfig/swriter/ui/envdialog.ui @@ -120,76 +120,10 @@ <property name="can-focus">True</property> <property name="hexpand">True</property> <property name="vexpand">True</property> + <property name="tab-pos">left</property> <property name="scrollable">True</property> <property name="enable-popup">True</property> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <child> - <placeholder/> - </child> - </object> - </child> - <child type="tab"> - <object class="GtkLabel" id="envelope"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <property name="label" translatable="yes" context="envdialog|envelope">Envelope</property> - </object> - <packing> - <property name="tab-fill">False</property> - </packing> - </child> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <child> - <placeholder/> - </child> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - <child type="tab"> - <object class="GtkLabel" id="format"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <property name="label" translatable="yes" context="envdialog|format">Format</property> - </object> - <packing> - <property name="position">1</property> - <property name="tab-fill">False</property> - </packing> - </child> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <child> - <placeholder/> - </child> - </object> - <packing> - <property name="position">2</property> - </packing> - </child> - <child type="tab"> - <object class="GtkLabel" id="printer"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <property name="label" translatable="yes" context="envdialog|printer">Printer</property> - </object> - <packing> - <property name="position">2</property> - <property name="tab-fill">False</property> - </packing> - </child> + <property name="group-name">icons</property> </object> <packing> <property name="expand">False</property> diff --git a/sw/uiconfig/swriter/ui/footendnotedialog.ui b/sw/uiconfig/swriter/ui/footendnotedialog.ui index 0d2b81aa2a33..61ac505ae009 100644 --- a/sw/uiconfig/swriter/ui/footendnotedialog.ui +++ b/sw/uiconfig/swriter/ui/footendnotedialog.ui @@ -92,52 +92,10 @@ <property name="can-focus">True</property> <property name="hexpand">True</property> <property name="vexpand">True</property> + <property name="tab-pos">left</property> <property name="scrollable">True</property> <property name="enable-popup">True</property> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <child> - <placeholder/> - </child> - </object> - </child> - <child type="tab"> - <object class="GtkLabel" id="footnotes"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <property name="label" translatable="yes" context="footendnotedialog|footnotes">Footnotes</property> - </object> - <packing> - <property name="tab-fill">False</property> - </packing> - </child> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <child> - <placeholder/> - </child> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - <child type="tab"> - <object class="GtkLabel" id="endnotes"> - <property name="visible">True</property> - <property name="can-focus">False</property> - <property name="label" translatable="yes" context="footendnotedialog|endnotes">Endnotes</property> - </object> - <packing> - <property name="position">1</property> - <property name="tab-fill">False</property> - </packing> - </child> + <property name="group-name">icons</property> </object> <packing> <property name="expand">False</property> diff --git a/sw/uiconfig/swriter/ui/outlinenumbering.ui b/sw/uiconfig/swriter/ui/outlinenumbering.ui index 228c762b32a1..b559868d2571 100644 --- a/sw/uiconfig/swriter/ui/outlinenumbering.ui +++ b/sw/uiconfig/swriter/ui/outlinenumbering.ui @@ -1,16 +1,16 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.36.0 --> +<!-- Generated with glade 3.40.0 --> <interface domain="sw"> <requires lib="gtk+" version="3.20"/> <object class="GtkMenu" id="form"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <child> <object class="GtkMenuItem" id="form1"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form1">Untitled 1</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form1-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form1">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -21,9 +21,9 @@ <child> <object class="GtkMenuItem" id="form2"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form2">Untitled 2</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form2-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form2">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -34,9 +34,9 @@ <child> <object class="GtkMenuItem" id="form3"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form3">Untitled 3</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form3-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form3">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -47,9 +47,9 @@ <child> <object class="GtkMenuItem" id="form4"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form4">Untitled 4</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form4-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form4">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -60,9 +60,9 @@ <child> <object class="GtkMenuItem" id="form5"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form5">Untitled 5</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form5-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form5">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -73,9 +73,9 @@ <child> <object class="GtkMenuItem" id="form6"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form6">Untitled 6</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form6-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form6">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -86,9 +86,9 @@ <child> <object class="GtkMenuItem" id="form7"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form7">Untitled 7</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form7-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form7">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -99,9 +99,9 @@ <child> <object class="GtkMenuItem" id="form8"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form8">Untitled 8</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form8-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form8">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -112,9 +112,9 @@ <child> <object class="GtkMenuItem" id="form9"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|form9">Untitled 9</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="form9-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|form9">Select this predefined numbering format to be the numbering format for this document. It will overwrite the current settings.</property> @@ -125,15 +125,15 @@ <child> <object class="GtkSeparatorMenuItem" id="menuitem10"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> </object> </child> <child> <object class="GtkMenuItem" id="saveas"> <property name="visible">True</property> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="label" translatable="yes" context="outlinenumbering|saveas">Save _As...</property> - <property name="use_underline">True</property> + <property name="use-underline">True</property> <child internal-child="accessible"> <object class="AtkObject" id="saveas-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|saveas">Opens a dialog box where you enter a name to identify the current settings. The name you enter will appear in the dropdown list when the Load/Save button is clicked, both in the current and in other documents. Click on the name to load the saved settings into a document.</property> @@ -148,31 +148,31 @@ </child> </object> <object class="GtkDialog" id="OutlineNumberingDialog"> - <property name="can_focus">False</property> - <property name="border_width">6</property> + <property name="can-focus">False</property> + <property name="border-width">6</property> <property name="title" translatable="yes" context="outlinenumbering|OutlineNumberingDialog">Heading Numbering</property> <property name="resizable">False</property> <property name="modal">True</property> - <property name="default_width">0</property> - <property name="default_height">0</property> - <property name="type_hint">dialog</property> + <property name="default-width">0</property> + <property name="default-height">0</property> + <property name="type-hint">dialog</property> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox1"> - <property name="can_focus">False</property> + <property name="can-focus">False</property> <property name="orientation">vertical</property> <property name="spacing">12</property> <child internal-child="action_area"> <object class="GtkButtonBox" id="dialog-action_area1"> - <property name="can_focus">False</property> - <property name="layout_style">end</property> + <property name="can-focus">False</property> + <property name="layout-style">end</property> <child> <object class="GtkMenuButton" id="format"> <property name="label" translatable="yes" context="outlinenumbering|user">L_oad/Save</property> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> - <property name="use_underline">True</property> - <property name="draw_indicator">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> + <property name="use-underline">True</property> + <property name="draw-indicator">True</property> <property name="popup">form</property> <child> <placeholder/> @@ -188,8 +188,8 @@ <object class="GtkButton" id="reset"> <property name="label" translatable="yes" context="stock">_Reset</property> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> <property name="use-underline">True</property> </object> <packing> @@ -202,10 +202,10 @@ <object class="GtkButton" id="ok"> <property name="label" translatable="yes" context="stock">_OK</property> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="can_default">True</property> - <property name="has_default">True</property> - <property name="receives_default">True</property> + <property name="can-focus">True</property> + <property name="can-default">True</property> + <property name="has-default">True</property> + <property name="receives-default">True</property> <property name="use-underline">True</property> </object> <packing> @@ -218,8 +218,8 @@ <object class="GtkButton" id="cancel"> <property name="label" translatable="yes" context="stock">_Cancel</property> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> <property name="use-underline">True</property> </object> <packing> @@ -232,8 +232,8 @@ <object class="GtkButton" id="help"> <property name="label" translatable="yes" context="stock">_Help</property> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="receives_default">True</property> + <property name="can-focus">True</property> + <property name="receives-default">True</property> <property name="use-underline">True</property> </object> <packing> @@ -247,110 +247,20 @@ <packing> <property name="expand">False</property> <property name="fill">True</property> - <property name="pack_type">end</property> + <property name="pack-type">end</property> <property name="position">0</property> </packing> </child> <child> <object class="GtkNotebook" id="tabcontrol"> <property name="visible">True</property> - <property name="can_focus">True</property> + <property name="can-focus">True</property> <property name="hexpand">True</property> <property name="vexpand">True</property> + <property name="tab-pos">left</property> <property name="scrollable">True</property> - <property name="enable_popup">True</property> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - </object> - </child> - <child type="tab"> - <object class="GtkLabel" id="numbering"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes" context="outlinenumbering|numbering">Numbering</property> - </object> - <packing> - <property name="tab_fill">False</property> - </packing> - </child> - <child> - <!-- n-columns=1 n-rows=1 --> - <object class="GtkGrid"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - <child> - <placeholder/> - </child> - </object> - <packing> - <property name="position">1</property> - </packing> - </child> - <child type="tab"> - <object class="GtkLabel" id="position"> - <property name="visible">True</property> - <property name="can_focus">False</property> - <property name="label" translatable="yes" context="outlinenumbering|position">Position</property> - </object> - <packing> - <property name="position">1</property> - <property name="tab_fill">False</property> - </packing> - </child> + <property name="enable-popup">True</property> + <property name="group-name">icons</property> </object> <packing> <property name="expand">False</property> @@ -366,9 +276,6 @@ <action-widget response="-6">cancel</action-widget> <action-widget response="-11">help</action-widget> </action-widgets> - <child type="titlebar"> - <placeholder/> - </child> <child internal-child="accessible"> <object class="AtkObject" id="OutlineNumberingDialog-atkobject"> <property name="AtkObject::accessible-description" translatable="yes" context="outlinenumbering|extended_tip|OutlineNumberingDialog">Use this dialog to specify the numbering format for headings in the current document. For each outline level, you can assign a paragraph style and a numbering scheme. Use “1-10” to apply the same setting for all outline levels.</property>