diff options
Diffstat (limited to 'gtk/deprecated')
-rw-r--r-- | gtk/deprecated/gtkcolorsel.c | 2 | ||||
-rw-r--r-- | gtk/deprecated/gtkhbox.c | 2 | ||||
-rw-r--r-- | gtk/deprecated/gtkvbox.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gtk/deprecated/gtkcolorsel.c b/gtk/deprecated/gtkcolorsel.c index a0b8377192..66b1018984 100644 --- a/gtk/deprecated/gtkcolorsel.c +++ b/gtk/deprecated/gtkcolorsel.c @@ -3071,7 +3071,7 @@ gtk_color_selection_palette_to_string (const GdkColor *colors, * tries to modify the palette in a color selection. * * This function should save the new palette contents, and update - * the #GtkSettings::gtk-color-palette GtkSettings property so all + * the #GtkSettings:gtk-color-palette GtkSettings property so all * GtkColorSelection widgets will be modified. * * Return value: the previous change palette hook (that was replaced) diff --git a/gtk/deprecated/gtkhbox.c b/gtk/deprecated/gtkhbox.c index 0ebd000ef1..3ea3253a30 100644 --- a/gtk/deprecated/gtkhbox.c +++ b/gtk/deprecated/gtkhbox.c @@ -49,7 +49,7 @@ * very quick and easy change. If you have derived your own classes from * GtkHBox, you can simply change the inheritance to derive directly * from #GtkBox. No further changes are needed, since the default - * value of the #GtkOrientable::orientation property is + * value of the #GtkOrientable:orientation property is * %GTK_ORIENTATION_HORIZONTAL. * If you want your code to be future-proof, the recommendation is to * switch to #GtkGrid, since #GtkBox is going to be deprecated in favor diff --git a/gtk/deprecated/gtkvbox.c b/gtk/deprecated/gtkvbox.c index a74b53fceb..9105a8c281 100644 --- a/gtk/deprecated/gtkvbox.c +++ b/gtk/deprecated/gtkvbox.c @@ -49,7 +49,7 @@ * GtkVBox has been deprecated. You can use #GtkBox instead, which is a * very quick and easy change. If you have derived your own classes from * GtkVBox, you can simply change the inheritance to derive directly - * from #GtkBox, and set the #GtkOrientable::orientation property to + * from #GtkBox, and set the #GtkOrientable:orientation property to * %GTK_ORIENTATION_VERTICAL in your instance init function, with a * call like: * |[ |