diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2024-01-13 17:43:03 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2024-01-15 16:27:15 +0100 |
commit | b499d539ea320cef6e916674c338ff90168e1068 (patch) | |
tree | 02bcc98767fe10f4dc6fff983982ece765ecf788 /vcl | |
parent | b66c6aa88484ebe8a6b013bf5990c6be45e48892 (diff) |
Add missing g_list_free in GtkInstanceComboBox ctr
Change-Id: I1cb70afb229036209c635e52c9b22f619025f368
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162000
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/gtk3/gtkinst.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx index 8bdeb8621549..b8da4f7b7a27 100644 --- a/vcl/unx/gtk3/gtkinst.cxx +++ b/vcl/unx/gtk3/gtkinst.cxx @@ -20361,6 +20361,7 @@ public: bFindButtonTextRenderer = false; } } + g_list_free(cells); // Seeing as GtkCellRendererPixbuf no longer takes a surface, then insert our own replacement // to render that instead here |