Set minimum for activity-step property to 0 instead of -G_MAXUINT.

* gtk/gtkprogressbar.c: Set minimum for activity-step property to 0
  instead of -G_MAXUINT.
This commit is contained in:
Johan Dahlin 2006-01-05 19:59:18 +00:00
parent 905254f775
commit 4810de4a0d
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-05 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtkprogressbar.c: Set minimum for activity-step property to 0
instead of -G_MAXUINT.
2006-01-05 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwindow.c: Only connect to the event if we have

View File

@ -1,3 +1,8 @@
2006-01-05 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtkprogressbar.c: Set minimum for activity-step property to 0
instead of -G_MAXUINT.
2006-01-05 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkwindow.c: Only connect to the event if we have

View File

@ -170,7 +170,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class)
g_param_spec_uint ("activity-step",
P_("Activity Step"),
P_("The increment used for each iteration in activity mode (Deprecated)"),
-G_MAXUINT,
0,
G_MAXUINT,
3,
GTK_PARAM_READWRITE));