Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Ptr{None} -> Ptr{Void}
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarne committed Sep 29, 2014
1 parent ee729e4 commit f34005b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lists.jl
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ depth(treeStore::GtkTreeStore, iter::TRI) =
### GtkTreeModelFilter

GtkTreeModelFilterLeaf(child_model::GObject) = GtkTreeModelFilterLeaf(
ccall((:gtk_tree_model_filter_new,libgtk),Ptr{GObject},(Ptr{GObject},Ptr{None}), child_model, C_NULL))
ccall((:gtk_tree_model_filter_new,libgtk),Ptr{GObject},(Ptr{GObject},Ptr{Void}), child_model, C_NULL))

function convert_iter_to_child_iter(model::GtkTreeModelFilter, filter_iter::TRI)
child_iter = mutable(GtkTreeIter)
Expand Down

3 comments on commit f34005b

@ivarne
Copy link
Contributor Author

@ivarne ivarne commented on f34005b Sep 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm just going trough and updating packages for JuliaLang/julia#8423, and I apparently had push acces here. Should we tag a new release for this change?

@vtjnash
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll tag. Thanks for checking & fixing

@ivarne
Copy link
Contributor Author

@ivarne ivarne commented on f34005b Sep 29, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just note that I only searched and replaced. I have not tested this.

Please sign in to comment.