Bug #217 » 0022-gtk4-Fix-GTK_IS_TREE_MODEL-assert-failure-on-help-di.patch
| client/gui-gtk-4.0/helpdlg.c | ||
|---|---|---|
|   model = gtk_tree_view_get_model(view); | ||
|   if (model == NULL) { | ||
|     return; | ||
|   } | ||
|   gtk_tree_view_get_cursor(view, &path, &col); | ||
|   gtk_tree_model_get_iter(model, &it, path); | ||
|   gtk_tree_path_free(path); | ||
|   if (!path) { | ||
|   if (path == NULL) { | ||
|     return; | ||
|   } | ||
- « Previous
- 1
- 2
- Next »