diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 06:15:13 +0000 |
commit | 52711c24e8b24c395f014de9d96019b728a28cf1 (patch) | |
tree | a14adea19950f5915458e44c9be22af11bf3855c /gtk/gtkprogressbar.c | |
parent | 263bce4445987c0ffee10438464106d55458f85e (diff) | |
download | gtk+-52711c24e8b24c395f014de9d96019b728a28cf1.tar.gz |
More canonical property names.
Diffstat (limited to 'gtk/gtkprogressbar.c')
-rw-r--r-- | gtk/gtkprogressbar.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkprogressbar.c b/gtk/gtkprogressbar.c index ac9f052014..6482eb4249 100644 --- a/gtk/gtkprogressbar.c +++ b/gtk/gtkprogressbar.c @@ -157,7 +157,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_BAR_STYLE, - g_param_spec_enum ("bar_style", + g_param_spec_enum ("bar-style", P_("Bar style"), P_("Specifies the visual style of the bar in percentage mode (Deprecated)"), GTK_TYPE_PROGRESS_BAR_STYLE, @@ -166,7 +166,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_ACTIVITY_STEP, - g_param_spec_uint ("activity_step", + g_param_spec_uint ("activity-step", P_("Activity Step"), P_("The increment used for each iteration in activity mode (Deprecated)"), -G_MAXUINT, @@ -176,7 +176,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_ACTIVITY_BLOCKS, - g_param_spec_uint ("activity_blocks", + g_param_spec_uint ("activity-blocks", P_("Activity Blocks"), P_("The number of blocks which can fit in the progress bar area in activity mode (Deprecated)"), 2, @@ -186,7 +186,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_DISCRETE_BLOCKS, - g_param_spec_uint ("discrete_blocks", + g_param_spec_uint ("discrete-blocks", P_("Discrete Blocks"), P_("The number of discrete blocks in a progress bar (when shown in the discrete style)"), 2, @@ -206,7 +206,7 @@ gtk_progress_bar_class_init (GtkProgressBarClass *class) g_object_class_install_property (gobject_class, PROP_PULSE_STEP, - g_param_spec_double ("pulse_step", + g_param_spec_double ("pulse-step", P_("Pulse Step"), P_("The fraction of total progress to move the bouncing block when pulsed"), 0.0, |