mirror of
https://github.com/tstellar/bygfoot.git
synced 2025-03-10 07:40:11 +01:00
29 lines
541 B
C
29 lines
541 B
C
|
#ifdef HAVE_CONFIG_H
|
||
|
# include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
#include "league_table_callbacks.h"
|
||
|
#include "league_table_interface.h"
|
||
|
#include "support.h"
|
||
|
|
||
|
|
||
|
gboolean
|
||
|
on_window_training_camp_delete_event (GtkWidget *widget,
|
||
|
GdkEvent *event,
|
||
|
gpointer user_data)
|
||
|
{
|
||
|
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
on_b_cancel_clicked (GtkButton *button,
|
||
|
gpointer user_data)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|