We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mail list thread: https://lists.gnu.org/archive/html/guile-user/2022-06/msg00024.html
how to initialize a variable meant to be a GtkTreeModel, a Gtk "interface"?
(selection is a valid GtkTreeSelection obtained elsewhere earlier) This does not work (the second line would result in error):
(let ((iter (make <GtkTreeIter>)) (model (make <GtkTreeModel>))) (define selected (tree-selection:get-selected! selection model iter))
This does not work either, error out on the second line:
(let ((iter (make <GtkTreeIter>)) (model (make <GtkListStore>))) (define selected (tree-selection:get-selected! selection model iter))
as GtkListStore implements GtkTreeModel but GOOPS says GtkListStore is not the expected type for the second argument
The text was updated successfully, but these errors were encountered:
No branches or pull requests
mail list thread: https://lists.gnu.org/archive/html/guile-user/2022-06/msg00024.html
how to initialize a variable meant to be a GtkTreeModel, a Gtk "interface"?
(selection is a valid GtkTreeSelection obtained elsewhere earlier)
This does not work (the second line would result in error):
This does not work either, error out on the second line:
as GtkListStore implements GtkTreeModel but GOOPS says GtkListStore is not the expected type for the second argument
The text was updated successfully, but these errors were encountered: