summaryrefslogtreecommitdiff
path: root/gtk/deprecated
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2012-02-15 11:43:33 +0100
committerMurray Cumming <murrayc@murrayc.com>2012-02-15 11:43:33 +0100
commita0b4ab109dccb0d523082de928948e71b0681ef1 (patch)
treec74e601c4a75d26dfcf1f3ba4b0f0085023c6b52 /gtk/deprecated
parent87d979f4983d888626fa4e9f8e1ee7fa1001921b (diff)
downloadgtk+-a0b4ab109dccb0d523082de928948e71b0681ef1.tar.gz
Documentation: Correct references to properties.
These should use :, not ::, though signals would use ::. See http://developer.gnome.org/gtk-doc-manual/unstable/documenting_syntax.html.en and http://developer.gnome.org/gtk-doc-manual/unstable/documenting_symbols.html.en
Diffstat (limited to 'gtk/deprecated')
-rw-r--r--gtk/deprecated/gtkcolorsel.c2
-rw-r--r--gtk/deprecated/gtkhbox.c2
-rw-r--r--gtk/deprecated/gtkvbox.c2
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:
* |[