| commit | fc0cc8fd1ae92eed355e8569fd5ba2fa7cf0cc40 | [log] |
|---|---|---|
| author | Caolán McNamara <caolanm@redhat.com> | Thu Jun 11 20:01:39 2020 +0100 |
| committer | Caolán McNamara <caolanm@redhat.com> | Fri Jun 12 20:02:40 2020 +0200 |
| tree | a5fcdde021c48b0c878ba21aefc1d5a38068553e | |
| parent | 05664c6ffae062a19ff3aa3e0949354d2586919d [diff] |
don't skip first column on toggle column check anymore Change-Id: Id9083ec432cba556538605692021d8c348322a16 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96164 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index 7867447..26dd0c5 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx
@@ -4782,7 +4782,7 @@ IMPL_LINK(SalInstanceTreeView, ToggleHdl, SvLBoxButtonData*, pData, void) // additionally set the cursor into the row the toggled element is in m_xTreeView->pImpl->m_pCursor = pEntry; for (int i = 1, nCount = pEntry->ItemCount(); i < nCount; ++i) for (int i = 0, nCount = pEntry->ItemCount(); i < nCount; ++i) { SvLBoxItem& rItem = pEntry->GetItem(i); if (&rItem == pBox)