gnumeric r16354 - in branches/gnumeric-1-8: . src



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

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

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



Modified:
   branches/gnumeric-1-8/ChangeLog
   branches/gnumeric-1-8/NEWS
   branches/gnumeric-1-8/src/clipboard.c

Modified: branches/gnumeric-1-8/NEWS
==============================================================================
--- branches/gnumeric-1-8/NEWS	(original)
+++ branches/gnumeric-1-8/NEWS	Tue Feb  5 14:29:56 2008
@@ -14,6 +14,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.1

Modified: branches/gnumeric-1-8/src/clipboard.c
==============================================================================
--- branches/gnumeric-1-8/src/clipboard.c	(original)
+++ branches/gnumeric-1-8/src/clipboard.c	Tue Feb  5 14:29:56 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]