Re: Widgets and GThreads.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> The idle function should return 'gboolean' depending on whether it
> should be called again.  By declaring it 'void' the return value is
> undefined, depending on optimization flags it might be TRUE or FALSE. 
> If TRUE, that will crash...  Better safe than sorry ;)

And that's why I never guarantee my code samples. I guess this then:

gboolean thread_button_set_label_BD (ButtonData *data)
{
        gtk_button_set_label (data->button, data->label);
        g_free (data->label);
        g_free (data);
	return FALSE;
}

_______________________________________________

gtk-list@xxxxxxxxx
http://mail.gnome.org/mailman/listinfo/gtk-list

[Index of Archives]     [Touch Screen Library]     [GIMP Users]     [Gnome]     [KDE]     [Yosemite News]     [Steve's Art]

  Powered by Linux