File: gtk2-c89-4.patch

package info (click to toggle)
gtk%2B2.0 2.24.33-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124,856 kB
  • sloc: ansic: 574,091; makefile: 5,172; sh: 4,624; xml: 1,193; python: 1,117; perl: 749; awk: 49; cpp: 34
file content (23 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Florian Weimer <fweimer@redhat.com>
Date: Sun, 21 Jan 2024 10:36:34 +0100
Subject: gtk2-c89-4

Return the expected GObject * type.  This was not fixed upstream before
this file was removed.
---
 gtk/gtkuimanager.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gtk/gtkuimanager.c b/gtk/gtkuimanager.c
index d004cf1..8cbeda9 100644
--- a/gtk/gtkuimanager.c
+++ b/gtk/gtkuimanager.c
@@ -503,7 +503,7 @@ gtk_ui_manager_buildable_construct_child (GtkBuildable *buildable,
   g_signal_connect (widget, "hierarchy-changed",
 		    G_CALLBACK (child_hierarchy_changed_cb),
 		    GTK_UI_MANAGER (buildable));
-  return g_object_ref (widget);
+  return G_OBJECT (g_object_ref (widget));
 }
 
 static void