gnumeric r16752 - in trunk: . src/dialogs
- From: jdassen svn gnome org
- To: svn-commits-list gnome org
- Subject: gnumeric r16752 - in trunk: . src/dialogs
- Date: Fri, 29 Aug 2008 11:48:11 +0000 (UTC)
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]