Allow initializing wxWidgets multiple times against one instance of GTK+, part 2

See #17751
This commit is contained in:
Paul Cornett 2016-12-16 20:16:40 -08:00
parent 6e885992f5
commit 7d193c601d

View File

@ -327,7 +327,10 @@ GType wxPizza::type()
{
type = g_type_from_name("wxPizza");
if (type)
{
parent_class = GTK_WIDGET_CLASS(g_type_class_peek_parent(g_type_class_peek(type)));
return type;
}
const GTypeInfo info = {
sizeof(wxPizzaClass),