mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-09 12:25:48 +01:00
Fix missing initializer warning in gio/gmenuexporter.c:g_dbus_connection_export_menu_model()
gio/gmenuexporter.c: In function ‘g_dbus_connection_export_menu_model’: gio/gmenuexporter.c:787:3: error: missing initializer for field ‘get_property’ of ‘GDBusInterfaceVTable’ {aka ‘const struct _GDBusInterfaceVTable’} 787 | }; | ^
This commit is contained in:
parent
5af79a84e3
commit
7d81742339
@ -783,7 +783,7 @@ g_dbus_connection_export_menu_model (GDBusConnection *connection,
|
|||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
const GDBusInterfaceVTable vtable = {
|
const GDBusInterfaceVTable vtable = {
|
||||||
g_menu_exporter_method_call,
|
g_menu_exporter_method_call, NULL, NULL, { 0 }
|
||||||
};
|
};
|
||||||
GMenuExporter *exporter;
|
GMenuExporter *exporter;
|
||||||
guint id;
|
guint id;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user