1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
myfunc()
{
GtkTreeModel *model;
GtkTreeStore *store;
...
model = gtk_tree_view_get_model(GTK_TREE_VIEW(view));
store = GTK_LIST_STORE ( model ); // warning: assignment from incompatible pointer type
gtk_list_store_append (store, &iter); // passing argument 1 of ‘gtk_list_store_append’ from incompatible pointer type
...
}
|