gnumeric r16353 - in trunk: . src



Author: mortenw
Date: Tue Feb  5 14:28:42 2008
New Revision: 16353
URL: http://svn.gnome.org/viewvc/gnumeric?rev=16353&view=rev

Log:
2008-02-05  Morten Welinder  <terra gnome org>

	* src/clipboard.c (cellregion_to_string): Fix col/row confusion.
	Fixes #514438.



Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/src/clipboard.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Tue Feb  5 14:28:42 2008
@@ -27,6 +27,7 @@
 	* Band-aid evaluation problem with broken xls.  [#513559]
 	* Fix circular array formula problem.
 	* Work around Qt theme bug.  [#512752]
+	* Fix paste-as-text bug.  [#514438]
 
 --------------------------------------------------------------------------
 Gnumeric 1.8.0

Modified: trunk/src/clipboard.c
==============================================================================
--- trunk/src/clipboard.c	(original)
+++ trunk/src/clipboard.c	Tue Feb  5 14:28:42 2008
@@ -937,7 +937,7 @@
 				g_string_append_c (line, '\t');
 		}
 		g_string_append_len (all, line->str, line->len);
-		if (++row <= extent.end.col)
+		if (++row <= extent.end.row)
 			g_string_append_c (all, '\n');
 	}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]