Wizard threads modified to work on Win32

This commit is contained in:
Sylvain Berfini 2012-02-08 12:05:40 +01:00
parent 9420ec250d
commit 15c4e16f88

View file

@ -268,7 +268,7 @@ void* check_username_availability(void* w) {
static void account_username_changed(GtkEntry *entry, GtkWidget *w) {
// Verifying if username choosed is available, and if form is correctly filled, let the user go next page
g_thread_create(check_username_availability, (void*)w, FALSE, NULL);
gdk_threads_add_idle((GSourceFunc)check_username_availability, (void*)w);
}
static GtkWidget *create_account_information_page() {