mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +01:00
Fix missing initializer in gio/gactiongroupexporter.c:g_dbus_connection_export_action_group()
gio/gactiongroupexporter.c: In function ‘g_dbus_connection_export_action_group’: gio/gactiongroupexporter.c:542:3: error: missing initializer for field ‘get_property’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 542 | }; | ^
This commit is contained in:
parent
8236b66a5d
commit
887f59ebc0
@ -538,7 +538,7 @@ g_dbus_connection_export_action_group (GDBusConnection *connection,
|
||||
GError **error)
|
||||
{
|
||||
const GDBusInterfaceVTable vtable = {
|
||||
org_gtk_Actions_method_call
|
||||
org_gtk_Actions_method_call, NULL, NULL, { 0 }
|
||||
};
|
||||
GActionGroupExporter *exporter;
|
||||
guint id;
|
||||
|
Loading…
Reference in New Issue
Block a user