chiark / gitweb /
Bug fix in TREE-MODEL-ROW-DATA
authorespen <espen>
Mon, 20 Aug 2007 11:20:21 +0000 (11:20 +0000)
committerespen <espen>
Mon, 20 Aug 2007 11:20:21 +0000 (11:20 +0000)
gtk/gtktree.lisp

index 4e3b3b51ec5f3b2318f0d50170d6de977618e48d..55b8e43ff8c522ddafb779c95500e70ad12ba94f 100644 (file)
@@ -20,7 +20,7 @@
 ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-;; $Id: gtktree.lisp,v 1.28 2007/08/20 10:33:05 espen Exp $
+;; $Id: gtktree.lisp,v 1.29 2007/08/20 11:20:21 espen Exp $
 
 
 (in-package "GTK")
@@ -417,7 +417,7 @@ (defmethod tree-model-row-data ((model tree-model) row)
   (coerce
    (loop
     with iter = (ensure-tree-iter model row)
-    for index from 0 to (tree-model-n-columns model)
+    for index from 0 below (tree-model-n-columns model)
     collect (tree-model-value model iter index))
    'vector))