mirror of https://github.com/tstellar/bygfoot.git
fixed compiler warnings
This commit is contained in:
parent
285530ce8f
commit
960ceff3d7
|
@ -1238,7 +1238,7 @@ create_window_file_chooser (void)
|
|||
GtkWidget *button1;
|
||||
GtkWidget *button2;
|
||||
|
||||
window_file_chooser = gtk_file_chooser_dialog_new (_("Choose file"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, NULL);
|
||||
window_file_chooser = gtk_file_chooser_dialog_new (_("Choose file"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, NULL,NULL);
|
||||
gtk_container_set_border_width (GTK_CONTAINER (window_file_chooser), 5);
|
||||
g_object_set (window_file_chooser,
|
||||
"show-hidden", TRUE,
|
||||
|
|
|
@ -1511,7 +1511,7 @@ treeview_create_finances(const User *user)
|
|||
|
||||
gint i, balance = 0;
|
||||
gchar buf[SMALL], buf2[SMALL], buf3[SMALL];
|
||||
gint *in = user->money_in[0],
|
||||
const gint *in = user->money_in[0],
|
||||
*out = user->money_out[0];
|
||||
gchar *in_titles[MON_IN_TRANSFERS] =
|
||||
{_("Prize money"),
|
||||
|
|
Loading…
Reference in New Issue