Kaydet (Commit) cd2ed4a0 authored tarafından Caolán McNamara's avatar Caolán McNamara

Resolves: tdf#121810 wrong column order

Change-Id: Ie82c47ea772b6eb5fc7b84426bb3c1cc98dc9c14
Reviewed-on: https://gerrit.libreoffice.org/64411
Tested-by: Jenkins
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst d489e5fe
...@@ -323,6 +323,12 @@ OExceptionChainDialog::OExceptionChainDialog(weld::Window* pParent, const Except ...@@ -323,6 +323,12 @@ OExceptionChainDialog::OExceptionChainDialog(weld::Window* pParent, const Except
lcl_insertExceptionEntry(*m_xExceptionList, m_aExceptions.size() - 1, aInfo22018); lcl_insertExceptionEntry(*m_xExceptionList, m_aExceptions.size() - 1, aInfo22018);
} }
if (m_xExceptionList->n_children())
{
m_xExceptionList->select(0);
OnExceptionSelected(*m_xExceptionList);
}
} }
IMPL_LINK_NOARG(OExceptionChainDialog, OnExceptionSelected, weld::TreeView&, void) IMPL_LINK_NOARG(OExceptionChainDialog, OnExceptionSelected, weld::TreeView&, void)
......
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
<requires lib="gtk+" version="3.18"/> <requires lib="gtk+" version="3.18"/>
<object class="GtkTreeStore" id="liststore1"> <object class="GtkTreeStore" id="liststore1">
<columns> <columns>
<!-- column-name text -->
<column type="gchararray"/>
<!-- column-name image --> <!-- column-name image -->
<column type="GdkPixbuf"/> <column type="GdkPixbuf"/>
<!-- column-name text -->
<column type="gchararray"/>
<!-- column-name id --> <!-- column-name id -->
<column type="gchararray"/> <column type="gchararray"/>
</columns> </columns>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment