[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Mon Nov 30 17:26:50 UTC 2020
vcl/source/app/salvtables.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6b1937dae95088cb267bc2d0edd1a65340616b5a
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jun 11 20:01:39 2020 +0100
Commit: Szymon Kłos <szymon.klos at collabora.com>
CommitDate: Mon Nov 30 18:26:10 2020 +0100
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 at redhat.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106889
Tested-by: Szymon Kłos <szymon.klos at collabora.com>
Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 98533945d6da..db5b3d97d6f1 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -4640,7 +4640,7 @@ IMPL_LINK(SalInstanceTreeView, ToggleHdl, SvLBoxButtonData*, pData, void)
// node was clicked
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)
More information about the Libreoffice-commits
mailing list