gnumeric r17174 - trunk/plugins/html
- From: guelzow svn gnome org
- To: svn-commits-list gnome org
- Subject: gnumeric r17174 - trunk/plugins/html
- Date: Thu, 5 Mar 2009 00:40:31 +0000 (UTC)
Author: guelzow
Date: Thu Mar 5 00:40:31 2009
New Revision: 17174
URL: http://svn.gnome.org/viewvc/gnumeric?rev=17174&view=rev
Log:
2009-03-04 Andreas J. Guelzow <aguelzow pyrshep ca>
* latex.c (latex_file_save): the previous correction used an
inverted comparison.
Modified:
trunk/plugins/html/ChangeLog
trunk/plugins/html/latex.c
Modified: trunk/plugins/html/latex.c
==============================================================================
--- trunk/plugins/html/latex.c (original)
+++ trunk/plugins/html/latex.c Thu Mar 5 00:40:31 2009
@@ -1353,7 +1353,7 @@
needs_hline = FALSE;
/* In case that we are at the very bottom of the sheet we can not */
/* check on the next line! */
- if (row > colrow_max (FALSE, current_sheet)) {
+ if (row < colrow_max (FALSE, current_sheet)) {
length = num_cols;
this_clines = clines;
for (col = total_range.start.col; col <= total_range.end.col; col++) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]