cui/uiconfig/ui/widgettestdialog.ui | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-)
New commits: commit 723805a678eda4fccc0aa67da115345f4e167b32 Author: Szymon Kłos <[email protected]> AuthorDate: Mon Dec 18 21:06:18 2023 +0100 Commit: Szymon Kłos <[email protected]> CommitDate: Wed Dec 20 11:28:07 2023 +0100 Don't use the same store 2 times in WidgetTestDialog ui Change-Id: I0fb9d4dec83dc37038a85dfc0039c7ec1af3b82d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160952 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/cui/uiconfig/ui/widgettestdialog.ui b/cui/uiconfig/ui/widgettestdialog.ui index 763f74d1ec73..71f013dbaecc 100644 --- a/cui/uiconfig/ui/widgettestdialog.ui +++ b/cui/uiconfig/ui/widgettestdialog.ui @@ -266,7 +266,7 @@ <object class="GtkComboBox" id="combo_box_enable"> <property name="visible">True</property> <property name="can-focus">False</property> - <property name="model">liststore1</property> + <property name="model">liststore4</property> <property name="has-entry">True</property> <property name="entry-text-column">0</property> <property name="id-column">1</property> @@ -630,6 +630,29 @@ t ever since the 1500s, when an unknown printer took a galley of type and scramb </row> </data> </object> + <object class="GtkListStore" id="liststore4"> + <columns> + <!-- column-name gchararray1 --> + <column type="gchararray"/> + </columns> + <data> + <row> + <col id="0" translatable="no">Test 1</col> + </row> + <row> + <col id="0" translatable="no">Test 2</col> + </row> + <row> + <col id="0" translatable="no">Test 3</col> + </row> + <row> + <col id="0" translatable="no">Test 4</col> + </row> + <row> + <col id="0" translatable="no">Test 5</col> + </row> + </data> + </object> <object class="GtkTreeStore" id="liststore2"> <columns> <!-- column-name expander -->
