diff options
author | Aron Budea <aron.budea@collabora.com> | 2021-04-18 06:27:33 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-04-19 18:38:46 +0200 |
commit | da3d3fad1515348b6c4f2303db83ec03594f0597 (patch) | |
tree | 8a5339591119488e07323a897cebd9029a5300ed /sfx2 | |
parent | 09a801915101f1cd6b39b20288fb55d76ad24c62 (diff) |
tdf#141244 Modify DDE Link dialog was empty
Regression from de01c0c1d0f80ffec3882625d77c02ab806f6c7a.
Apparently <property> entries must precede <child> ones in
.ui files.
Change-Id: Ie91897d126527d3b30935a46b31f0a53b2837c53
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114237
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/uiconfig/ui/linkeditdialog.ui | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/sfx2/uiconfig/ui/linkeditdialog.ui b/sfx2/uiconfig/ui/linkeditdialog.ui index 36e9f3d6930f..d39c829052e4 100644 --- a/sfx2/uiconfig/ui/linkeditdialog.ui +++ b/sfx2/uiconfig/ui/linkeditdialog.ui @@ -3,11 +3,6 @@ <interface domain="sfx"> <requires lib="gtk+" version="3.20"/> <object class="GtkDialog" id="LinkEditDialog"> - <child internal-child="accessible"> - <object class="AtkObject" id="LinkEditDialog-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|LinkEditDialog"/> - </object> - </child> <property name="can_focus">False</property> <property name="border_width">6</property> <property name="title" translatable="yes" context="linkeditdialog|title">Modify DDE Link</property> @@ -15,6 +10,11 @@ <property name="default_width">0</property> <property name="default_height">0</property> <property name="type_hint">dialog</property> + <child internal-child="accessible"> + <object class="AtkObject" id="LinkEditDialog-atkobject"> + <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|LinkEditDialog"/> + </object> + </child> <child> <placeholder/> </child> @@ -143,16 +143,16 @@ </child> <child> <object class="GtkEntry" id="app"> - <child internal-child="accessible"> - <object class="AtkObject" id="app-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|app">Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice.</property> - </object> - </child> <property name="visible">True</property> <property name="can_focus">True</property> <property name="hexpand">True</property> <property name="truncate-multiline">True</property> <property name="activates_default">True</property> + <child internal-child="accessible"> + <object class="AtkObject" id="app-atkobject"> + <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|app">Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice.</property> + </object> + </child> </object> <packing> <property name="left_attach">1</property> @@ -161,16 +161,16 @@ </child> <child> <object class="GtkEntry" id="file"> - <child internal-child="accessible"> - <object class="AtkObject" id="file-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|file">Path to the source file. Relative paths must be expressed by full URI, for example, with file://.</property> - </object> - </child> <property name="visible">True</property> <property name="can_focus">True</property> <property name="hexpand">True</property> <property name="truncate-multiline">True</property> <property name="activates_default">True</property> + <child internal-child="accessible"> + <object class="AtkObject" id="file-atkobject"> + <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|file">Path to the source file. Relative paths must be expressed by full URI, for example, with file://.</property> + </object> + </child> </object> <packing> <property name="left_attach">1</property> @@ -179,16 +179,16 @@ </child> <child> <object class="GtkEntry" id="category"> - <child internal-child="accessible"> - <object class="AtkObject" id="category-atkobject"> - <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|category">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</property> - </object> - </child> <property name="visible">True</property> <property name="can_focus">True</property> <property name="hexpand">True</property> <property name="truncate-multiline">True</property> <property name="activates_default">True</property> + <child internal-child="accessible"> + <object class="AtkObject" id="category-atkobject"> + <property name="AtkObject::accessible-description" translatable="yes" context="linkeditdialog|extended_tip|category">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</property> + </object> + </child> </object> <packing> <property name="left_attach">1</property> |