projects
/
cl-gtk2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51aa0c0
)
Fix for null-pointe-p vs null in gtk.tree-model
author
Dmitry Kalyanov
<Kalyanov.Dmitry@gmail.com>
Tue, 17 Mar 2009 00:05:13 +0000
(
03:05
+0300)
committer
Dmitry Kalyanov
<Kalyanov.Dmitry@gmail.com>
Tue, 17 Mar 2009 00:05:13 +0000
(
03:05
+0300)
gtk/gtk.tree-model.lisp
patch
|
blob
|
history
diff --git
a/gtk/gtk.tree-model.lisp
b/gtk/gtk.tree-model.lisp
index
788e028
..
6cbdb96
100644
(file)
--- a/
gtk/gtk.tree-model.lisp
+++ b/
gtk/gtk.tree-model.lisp
@@
-90,7
+90,7
@@
t))
(defmethod tree-model-iter-n-children-impl ((model array-list-store) iter)
- (if (null-pointer-p iter)
+ (if (null iter)
(length (store-items model))
0))