Fix old-style function declarations.
This commit is contained in:
@@ -104,7 +104,7 @@ program_exists (gchar *program)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
execute_default_command ()
|
execute_default_command (void)
|
||||||
{
|
{
|
||||||
static gchar *command = NULL;
|
static gchar *command = NULL;
|
||||||
|
|
||||||
@@ -152,7 +152,7 @@ menu_append_item (GtkMenu *menu, gchar *title, gchar *command, gchar *icon_name)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline GtkWidget *
|
static inline GtkWidget *
|
||||||
construct_menu ()
|
construct_menu (void)
|
||||||
{
|
{
|
||||||
GtkWidget *menu = gtk_menu_new ();
|
GtkWidget *menu = gtk_menu_new ();
|
||||||
|
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ menu_append_item (GtkMenu *menu, gchar *title, gchar *setting_name, XtmSettings
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline GtkWidget *
|
static inline GtkWidget *
|
||||||
construct_menu ()
|
construct_menu (void)
|
||||||
{
|
{
|
||||||
XtmSettings *settings = xtm_settings_get_default ();
|
XtmSettings *settings = xtm_settings_get_default ();
|
||||||
GtkWidget *menu = gtk_menu_new ();
|
GtkWidget *menu = gtk_menu_new ();
|
||||||
|
|||||||
Reference in New Issue
Block a user