summaryrefslogtreecommitdiff
path: root/gdk/gdkpango.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-03-29 00:24:15 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-03-29 00:24:15 -0400
commitbf8a169cb97c28f71251313d79d5bac4c5ef4284 (patch)
tree56c0318ddb7e163a54e2a9d03c274929c27adf7a /gdk/gdkpango.c
parent3d0b7314cdf62fe2c115311af8e24ece2f1586a2 (diff)
downloadgtk+-bf8a169cb97c28f71251313d79d5bac4c5ef4284.tar.gz
docs: Another round of markup removal
Diffstat (limited to 'gdk/gdkpango.c')
-rw-r--r--gdk/gdkpango.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/gdk/gdkpango.c b/gdk/gdkpango.c
index e3fb0c6477..66615e8178 100644
--- a/gdk/gdkpango.c
+++ b/gdk/gdkpango.c
@@ -52,8 +52,6 @@
*
* ## Draw transformed text with Pango and cairo ## {#rotated-example}
*
- * <!-- Note that this example is basically the same as
- * demos/gtk-demo/rotated_text.c -->
* |[<!-- language="C" -->
* #define RADIUS 100
* #define N_WORDS 10
@@ -67,9 +65,9 @@
* int width, height;
* int i;
*
- * /<!---->* Set up a transformation matrix so that the user space coordinates for
- * * where we are drawing are [-RADIUS, RADIUS], [-RADIUS, RADIUS]
- * * We first center, then change the scale *<!---->/
+ * // Set up a transformation matrix so that the user space coordinates for
+ * // where we are drawing are [-RADIUS, RADIUS], [-RADIUS, RADIUS]
+ * // We first center, then change the scale
*
* width = gdk_window_get_width (window);
* height = gdk_window_get_height (window);
@@ -80,7 +78,7 @@
* radius + (height - 2 * radius) / 2);
* cairo_scale (cr, radius / RADIUS, radius / RADIUS);
*
- * /<!---->* Create a PangoLayout, set the font and text *<!---->/
+ * // Create a PangoLayout, set the font and text
* context = gdk_pango_context_get_for_screen (screen);
* layout = pango_layout_new (context);
* pango_layout_set_text (layout, "Text", -1);
@@ -88,7 +86,7 @@
* pango_layout_set_font_description (layout, desc);
* pango_font_description_free (desc);
*
- * /<!---->* Draw the layout N_WORDS times in a circle *<!---->/
+ * // Draw the layout N_WORDS times in a circle
* for (i = 0; i < N_WORDS; i++)
* {
* double red, green, blue;
@@ -96,7 +94,7 @@
*
* cairo_save (cr);
*
- * /<!---->* Gradient from red at angle == 60 to blue at angle == 300 *<!---->/
+ * // Gradient from red at angle == 60 to blue at angle == 300
* red = (1 + cos (angle - 60)) / 2;
* green = 0;
* blue = 1 - red;
@@ -104,7 +102,7 @@
* cairo_set_source_rgb (cr, red, green, blue);
* cairo_rotate (cr, angle);
*
- * /<!---->* Inform Pango to re-layout the text with the new transformation matrix *<!---->/
+ * // Inform Pango to re-layout the text with the new transformation matrix
* pango_cairo_update_layout (cr, layout);
*
* pango_layout_get_size (layout, &width, &height);