gnumeric r16752 - in trunk: . src/dialogs



Author: jdassen
Date: Fri Aug 29 11:48:10 2008
New Revision: 16752
URL: http://svn.gnome.org/viewvc/gnumeric?rev=16752&view=rev

Log:
Corrected error message for sim.first_round > sim.last_round. [#537669]

Modified:
   trunk/NEWS
   trunk/src/dialogs/ChangeLog
   trunk/src/dialogs/dialog-simulation.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Fri Aug 29 11:48:10 2008
@@ -9,6 +9,7 @@
 
 J.H.M. Dassen (Ray):
 	* Bumped goffice build dependency.
+	* Corrected error message for first_round > last_round. [#537669]
 
 Jody:
 	* Fix distcheck. [#540284]

Modified: trunk/src/dialogs/dialog-simulation.c
==============================================================================
--- trunk/src/dialogs/dialog-simulation.c	(original)
+++ trunk/src/dialogs/dialog-simulation.c	Fri Aug 29 11:48:10 2008
@@ -332,8 +332,9 @@
 	sim.last_round = gtk_spin_button_get_value (GTK_SPIN_BUTTON (w)) - 1;
 
 	if (sim.first_round > sim.last_round) {
-		err = (gchar *) N_("First round number should be greater or "
-				   "equal than the number of the last round.");
+		err = (gchar *) N_("First round number should be less than or "
+				   "equal to the number of the last round."
+				   );
 		goto out;
 	}
 



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