diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-09-20 06:07:48 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-09-20 06:07:48 +0800 |
commit | 6fe66715f9b25dd6a1d9567c0da9e97cadf64003 (patch) | |
tree | 1b6edbdf1d3ad97e9d7bbd9d19b28e1d96d68d63 | |
parent | 00e47f55dd7abd2f5e6723e78d71211abebe2cd2 (diff) | |
download | gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar.gz gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar.bz2 gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar.lz gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar.xz gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.tar.zst gsoc2013-evolution-6fe66715f9b25dd6a1d9567c0da9e97cadf64003.zip |
Fixed a typo here. esa->rows += count, not esa->rows = count.
2001-09-19 Christopher James Lahey <clahey@ximian.com>
* 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
-rw-r--r-- | e-util/e-sorter-array.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |