From 6fe66715f9b25dd6a1d9567c0da9e97cadf64003 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 19 Sep 2001 22:07:48 +0000 Subject: Fixed a typo here. esa->rows += count, not esa->rows = count. 2001-09-19 Christopher James Lahey * gal/util/e-sorter-array.c (e_sorter_array_append): Fixed a typo here. esa->rows += count, not esa->rows = count. svn path=/trunk/; revision=12991 --- e-util/e-sorter-array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'e-util/e-sorter-array.c') diff --git a/e-util/e-sorter-array.c b/e-util/e-sorter-array.c index ecbdb23198..0bd0cac149 100644 --- a/e-util/e-sorter-array.c +++ b/e-util/e-sorter-array.c @@ -202,7 +202,7 @@ e_sorter_array_append (ESorterArray *esa, int count) esa->rows ++; } } else { - esa->rows = count; + esa->rows += count; } } -- cgit v1.2.3