diff options
author | Robert Tari <robert@tari.in> | 2023-03-11 18:31:29 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2023-05-09 00:17:30 +0200 |
commit | d848644c60d5d60a831bcb286c521508fa4f3fde (patch) | |
tree | 60438904d1d8339d35f2ceb0287f1ce66b20cff3 /src | |
parent | f7f4a8dd6b12327e37f918a2f5f65e3a0a8dc413 (diff) | |
download | libayatana-appindicator-d848644c60d5d60a831bcb286c521508fa4f3fde.tar.gz libayatana-appindicator-d848644c60d5d60a831bcb286c521508fa4f3fde.tar.bz2 libayatana-appindicator-d848644c60d5d60a831bcb286c521508fa4f3fde.zip |
src/app-indicator.c: Don't use GNU old-style field designator extension
Diffstat (limited to 'src')
-rw-r--r-- | src/app-indicator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index c44b3a4..ebedc65 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -3,7 +3,7 @@ An object to represent the application as an application indicator in the system panel. Copyright 2009 Canonical Ltd. -Copyright 2022 Robert Tari +Copyright 2022-2023 Robert Tari Authors: Ted Gould <ted@canonical.com> @@ -207,9 +207,9 @@ static void bus_method_call (GDBusConnection * connection, const gchar * sender, static void bus_creation (GObject * obj, GAsyncResult * res, gpointer user_data); static const GDBusInterfaceVTable item_interface_table = { - method_call: bus_method_call, - get_property: bus_get_prop, - set_property: NULL /* No properties that can be set */ + .method_call = bus_method_call, + .get_property = bus_get_prop, + .set_property = NULL /* No properties that can be set */ }; /* GObject type */ |