2001-04-20 05:40:52 -04:00
|
|
|
$OpenBSD: patch-about_cc,v 1.2 2001/04/20 09:40:53 wilfried Exp $
|
|
|
|
--- about.cc.orig Wed Apr 11 21:16:59 2001
|
|
|
|
+++ about.cc Fri Apr 20 11:24:35 2001
|
|
|
|
@@ -14,7 +14,7 @@
|
2001-04-02 11:14:51 -04:00
|
|
|
extern string c_info,s_info;
|
|
|
|
static Fl_Double_Window *xxx=(Fl_Double_Window *)0;
|
|
|
|
Fl_Window *splash=(Fl_Window *)0;
|
|
|
|
-static Fl_Return_Button *OK; static int st=0;
|
|
|
|
+static Fl_Return_Button *OK; static volatile int st=0;
|
|
|
|
static Fl_Pixmap pixmap_logo1(image_logo1);
|
2001-04-20 05:40:52 -04:00
|
|
|
static char *text_c="\n\n\n\n\n\n MySQLGUI version 1.7.5\n\n\nServer version : %s\nClient version : %s\n\n\
|
2001-04-02 11:14:51 -04:00
|
|
|
Authors:\n\n\
|
2001-04-20 05:40:52 -04:00
|
|
|
@@ -113,5 +113,5 @@ void do_about(Fl_Menu_*,void*) {
|
2001-04-02 11:14:51 -04:00
|
|
|
}
|
|
|
|
o->end(); o->show();
|
|
|
|
}
|
|
|
|
- while (xxx->visible()) Fl::wait();
|
|
|
|
+ while (st && xxx->visible()) Fl::wait();
|
|
|
|
}
|