From: espen Date: Mon, 20 Aug 2007 11:20:21 +0000 (+0000) Subject: Bug fix in TREE-MODEL-ROW-DATA X-Git-Tag: clg-0-93~89 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/985e276dfff3c1eedfe0e47c806116a2107dd0a3 Bug fix in TREE-MODEL-ROW-DATA --- diff --git a/gtk/gtktree.lisp b/gtk/gtktree.lisp index 4e3b3b5..55b8e43 100644 --- a/gtk/gtktree.lisp +++ b/gtk/gtktree.lisp @@ -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 @@ (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))