mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Fix more -Wincompatible-pointer-types
c10154ad23 showed the direction but was not correct and insufficient
for building with Fedora 40 and gcc 14.0.1 .
This commit is contained in:
parent
c10154ad23
commit
a2bb1a3511
8 changed files with 8 additions and 8 deletions
|
|
@ -10683,7 +10683,7 @@ gtk_widget_buildable_custom_tag_start (GtkBuildable *buildable,
|
|||
AccelGroupParserData *parser_data;
|
||||
|
||||
parser_data = g_slice_new0 (AccelGroupParserData);
|
||||
parser_data->object = g_object_ref (buildable);
|
||||
parser_data->object = G_OBJECT (g_object_ref (buildable));
|
||||
*parser = accel_group_parser;
|
||||
*data = parser_data;
|
||||
return TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue