[Libreoffice-commits] core.git: vcl/unx
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Oct 4 07:57:56 UTC 2018
vcl/unx/gtk3/gtk3gtkinst.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e3df7e17d568e1efb5d2b94f95b4b52c441789cf
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Oct 3 21:32:06 2018 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Oct 4 09:57:26 2018 +0200
color moved to slot 4
Change-Id: I965d4b042cf1510d5286c85043792a140116497f
Reviewed-on: https://gerrit.libreoffice.org/61331
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 2837d4902bc9..f1d69a509e2d 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3840,7 +3840,7 @@ public:
GtkTreeIter iter;
gtk_tree_model_iter_nth_child(GTK_TREE_MODEL(m_pListStore), &iter, nullptr, pos);
GdkRGBA aColor{rColor.GetRed()/255.0, rColor.GetGreen()/255.0, rColor.GetBlue()/255.0, 0};
- gtk_list_store_set(m_pListStore, &iter, 3, &aColor, -1);
+ gtk_list_store_set(m_pListStore, &iter, 4, &aColor, -1);
}
virtual void remove(int pos) override
More information about the Libreoffice-commits
mailing list