mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +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
|
|
@ -207,7 +207,7 @@ gtk_cell_renderer_spin_set_property (GObject *object,
|
|||
}
|
||||
|
||||
if (obj)
|
||||
priv->adjustment = g_object_ref_sink (obj);
|
||||
priv->adjustment = GTK_ADJUSTMENT (g_object_ref_sink (obj));
|
||||
break;
|
||||
case PROP_CLIMB_RATE:
|
||||
priv->climb_rate = g_value_get_double (value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue