| Thread Previous • Date Previous • Date Next • Thread Next |
I checked Granite sources, in Application.vala, there is your proc :
public virtual void show_about (Gtk.Widget parent) {
assert(parent is Gtk.Window);
Granite.Widgets.show_about_dialog (...);
}
I think that you're giving a NULL reference instead of the window parent
and then the assert fails.
I hope this help.
Juliomino
| Thread Previous • Date Previous • Date Next • Thread Next |