1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-02-21 22:07:39 +01:00

included training camp

This commit is contained in:
mrsmola 2007-01-18 17:38:14 +00:00
parent c1b8298d1d
commit 2093605997

View File

@ -1442,6 +1442,14 @@ treeview_create_finances(const User* user)
gtk_list_store_append(ls, &iter);
gtk_list_store_set(ls, &iter, 0, _("Stadium expenses"), 1, "", 2, buf2, -1);
}
if(out[MON_OUT_TRAINING_CAMP] != 0)
{
misc_print_grouped_int(out[MON_OUT_TRAINING_CAMP], buf);
sprintf(buf2, "<span foreground='%s'>%s</span>", const_app("string_treeview_finances_expenses_fg"), buf);
gtk_list_store_append(ls, &iter);
gtk_list_store_set(ls, &iter, 0, _("Training camp"), 1, "", 2, buf2, -1);
}
gtk_list_store_append(ls, &iter);
gtk_list_store_set(ls, &iter, 0, "", 1, "", 2, "", -1);