mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Fix missing initializer warnings in gio/gapplication-tool.c
gio/gapplication-tool.c:51:3: error: missing initializer for field ‘synopsis’ of ‘const struct help_topic’ 51 | }, | ^ gio/gapplication-tool.c:54:3: error: missing initializer for field ‘synopsis’ of ‘const struct help_topic’ 54 | }, | ^
This commit is contained in:
parent
e89bd4cc15
commit
02126e0a07
@ -47,10 +47,12 @@ static const struct help_topic topics[] = {
|
||||
N_("[COMMAND]")
|
||||
},
|
||||
{ "version", N_("Print version"),
|
||||
N_("Print version information and exit")
|
||||
N_("Print version information and exit"),
|
||||
NULL
|
||||
},
|
||||
{ "list-apps", N_("List applications"),
|
||||
N_("List the installed D-Bus activatable applications (by .desktop files)")
|
||||
N_("List the installed D-Bus activatable applications (by .desktop files)"),
|
||||
NULL
|
||||
},
|
||||
{ "launch", N_("Launch an application"),
|
||||
N_("Launch the application (with optional files to open)"),
|
||||
|
Loading…
Reference in New Issue
Block a user