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:
Emmanuel Fleury 2020-11-17 11:47:20 +01:00
parent 8236b66a5d
commit 887f59ebc0

View File

@ -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;