[glib: 3/11] Fix missing initializer in gio/gactiongroupexporter.c:g_dbus_connection_export_action_group()
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib: 3/11] Fix missing initializer in gio/gactiongroupexporter.c:g_dbus_connection_export_action_group()
- Date: Sat, 30 Jan 2021 22:34:42 +0000 (UTC)
commit 887f59ebc06549a07988680cf95bd14396894f1a
Author: Emmanuel Fleury <emmanuel fleury gmail com>
Date: Tue Nov 17 11:47:20 2020 +0100
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 | };
| ^
gio/gactiongroupexporter.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gio/gactiongroupexporter.c b/gio/gactiongroupexporter.c
index 17111ffb8..8453723f5 100644
--- a/gio/gactiongroupexporter.c
+++ b/gio/gactiongroupexporter.c
@@ -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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]