summaryrefslogtreecommitdiff
path: root/gdk/gdkrgba.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 17:04:46 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-27 19:59:55 -0500
commit22586ea7c2c87a44ac1cc87f876e9f3ba2e73625 (patch)
tree72f3256948c09d527f3cd7ec409017c92515dde7 /gdk/gdkrgba.c
parent8418e6422f0ec67c51d472321f4704a3a16e0368 (diff)
downloadgtk+-22586ea7c2c87a44ac1cc87f876e9f3ba2e73625.tar.gz
docs: use #*-struct instead of <structname>
Diffstat (limited to 'gdk/gdkrgba.c')
-rw-r--r--gdk/gdkrgba.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdk/gdkrgba.c b/gdk/gdkrgba.c
index 918dbb26a7..e52410657d 100644
--- a/gdk/gdkrgba.c
+++ b/gdk/gdkrgba.c
@@ -35,7 +35,7 @@
* @Short_description: RGBA colors
* @Title: RGBA Colors
*
- * The #GdkRGBA struct is a convenient way to pass rgba colors around.
+ * #GdkRGBA is a convenient way to pass rgba colors around.
* It's based on cairo's way to deal with colors and mirrors its behavior.
* All values are in the range from 0.0 to 1.0 inclusive. So the color
* (0.0, 0.0, 0.0, 0.0) represents transparent black and
@@ -54,7 +54,7 @@ G_DEFINE_BOXED_TYPE (GdkRGBA, gdk_rgba,
* @alpha: The opacity of the color from 0.0 for completely translucent to
* 1.0 for opaque
*
- * The GdkRGBA structure is used to represent a (possibly translucent)
+ * A #GdkRGBA is used to represent a (possibly translucent)
* color, in a way that is compatible with cairos notion of color.
*/
@@ -62,7 +62,7 @@ G_DEFINE_BOXED_TYPE (GdkRGBA, gdk_rgba,
* gdk_rgba_copy:
* @rgba: a #GdkRGBA
*
- * Makes a copy of a #GdkRGBA structure.
+ * Makes a copy of a #GdkRGBA.
*
* The result must be freed through gdk_rgba_free().
*
@@ -80,7 +80,7 @@ gdk_rgba_copy (const GdkRGBA *rgba)
* gdk_rgba_free:
* @rgba: a #GdkRGBA
*
- * Frees a #GdkRGBA struct created with gdk_rgba_copy()
+ * Frees a #GdkRGBA created with gdk_rgba_copy()
*
* Since: 3.0
*/
@@ -134,13 +134,13 @@ parse_rgb_value (const gchar *str,
/**
* gdk_rgba_parse:
- * @rgba: the #GdkRGBA struct to fill in
+ * @rgba: the #GdkRGBA to fill in
* @spec: the string specifying the color
*
* Parses a textual representation of a color, filling in
* the <structfield>red</structfield>, <structfield>green</structfield>,
* <structfield>blue</structfield> and <structfield>alpha</structfield>
- * fields of the @rgba struct.
+ * fields of the @rgba #GdkRGBA.
*
* The string can be either one of:
* <itemizedlist>