mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-08 18:24:04 +02: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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user