summaryrefslogtreecommitdiff
path: root/gdk/gdkrgba.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-02 01:07:39 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-02 01:07:39 -0500
commit30cc1512e634417eb040bd5a287736c1ef7782d9 (patch)
tree7fcb1dbbe0e184f762bc6f29dd6e362cd01112e3 /gdk/gdkrgba.c
parent09d1b28249af38448be0b52d00dd9924adac5d1c (diff)
downloadgtk+-30cc1512e634417eb040bd5a287736c1ef7782d9.tar.gz
Docs: Use markdown for lists
This greatly reduces the amount of xml in the docs.
Diffstat (limited to 'gdk/gdkrgba.c')
-rw-r--r--gdk/gdkrgba.c22
1 files changed, 6 insertions, 16 deletions
diff --git a/gdk/gdkrgba.c b/gdk/gdkrgba.c
index 254abf3945..6a27ba1192 100644
--- a/gdk/gdkrgba.c
+++ b/gdk/gdkrgba.c
@@ -141,22 +141,12 @@ parse_rgb_value (const gchar *str,
* the @red, @green, @blue and @alpha fields of the @rgba #GdkRGBA.
*
* The string can be either one of:
- * <itemizedlist>
- * <listitem>
- * A standard name (Taken from the X11 rgb.txt file).
- * </listitem>
- * <listitem>
- * A hex value in the form '&num;rgb' '&num;rrggbb' '&num;rrrgggbbb'
- * or '&num;rrrrggggbbbb'
- * </listitem>
- * <listitem>
- * A RGB color in the form 'rgb(r,g,b)' (In this case the color will
- * have full opacity)
- * </listitem>
- * <listitem>
- * A RGBA color in the form 'rgba(r,g,b,a)'
- * </listitem>
- * </itemizedlist>
+ * - A standard name (Taken from the X11 rgb.txt file).
+ * - A hex value in the form '&num;rgb' '&num;rrggbb' '&num;rrrgggbbb'
+ * or '&num;rrrrggggbbbb'
+ * - A RGB color in the form 'rgb(r,g,b)' (In this case the color will
+ * have full opacity)
+ * - A RGBA color in the form 'rgba(r,g,b,a)'
*
* Where 'r', 'g', 'b' and 'a' are respectively the red, green, blue and
* alpha color values. In the last two cases, r g and b are either integers