The only change in this mess is changing indentation; no actual code is

changed.
This commit is contained in:
Glenn Maynard
2003-07-12 19:45:07 +00:00
parent d6dee7f416
commit bfc2215191
@@ -4,7 +4,8 @@
static GtkWidget *label; static GtkWidget *label;
static GtkWidget *window; static GtkWidget *window;
void CreateGtkLoadingWindow() { void CreateGtkLoadingWindow()
{
GdkPixmap *loadmap; GdkPixmap *loadmap;
GtkWidget *vbox; GtkWidget *vbox;
GtkWidget *loadimage; GtkWidget *loadimage;
@@ -31,10 +32,12 @@ void CreateGtkLoadingWindow() {
gtk_main_iteration_do(FALSE); gtk_main_iteration_do(FALSE);
} }
void DestroyGtkLoadingWindow() { void DestroyGtkLoadingWindow()
{
} }
void SetGtkLoadingWindowText(const char *s) { void SetGtkLoadingWindowText(const char *s)
{
gtk_label_set_text(GTK_LABEL(label),s); gtk_label_set_text(GTK_LABEL(label),s);
gtk_widget_show(label); gtk_widget_show(label);
gtk_main_iteration_do(FALSE); gtk_main_iteration_do(FALSE);