summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-03-21 14:43:11 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-03-21 20:45:38 +0100
commit5545fa0b9f88057e8b7ef4405cf15c2096d23691 (patch)
tree18214af5a3189259def10e40fc21fd6852645085
parent9456a764a98daa2915f6fefac336d8bb5cff531a (diff)
cid#1474327 move markup to previous line
Change-Id: I2457ab6ea8159cc3f594042390825ae035bf9d35 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112840 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/unx/gtk3/gtk3gtkinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index c9fe5288ae2f..ec8d970caad3 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -6135,8 +6135,8 @@ public:
gtk_container_remove(GTK_CONTAINER(m_pScrolledWindow), pViewport);
gtk_container_add(GTK_CONTAINER(m_pScrolledWindow), m_pOrigViewport);
- g_object_unref(m_pOrigViewport);
// coverity[freed_arg : FALSE] - this does not free m_pOrigViewport, it is reffed by m_pScrolledWindow
+ g_object_unref(m_pOrigViewport);
gtk_container_add(GTK_CONTAINER(m_pOrigViewport), pChild);
g_object_unref(pChild);
gtk_widget_destroy(pViewport);