summaryrefslogtreecommitdiff
path: root/gtk/gtkimage.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-02-09 17:24:06 -0500
committerMatthias Clasen <mclasen@redhat.com>2014-02-09 17:58:07 -0500
commit7f6a964c47ad2f9dcf6a00044d938840ce8f01f2 (patch)
tree89fdaf3a0f7ee34d49449c9ac241460b6a06616e /gtk/gtkimage.c
parentab0574a88bc0105f6d7374a0f305fe5f0aaeb027 (diff)
downloadgtk+-7f6a964c47ad2f9dcf6a00044d938840ce8f01f2.tar.gz
Docs: Remove all entities and turn off sgml mode
With all element markup gone, it is time to turn off sgml mode, and get rid of entities as well.
Diffstat (limited to 'gtk/gtkimage.c')
-rw-r--r--gtk/gtkimage.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c
index efbdb5286e..2932062c9e 100644
--- a/gtk/gtkimage.c
+++ b/gtk/gtkimage.c
@@ -83,14 +83,14 @@
* GdkEventButton *event,
* gpointer data)
* {
- * g_print ("Event box clicked at coordinates &percnt;f,&percnt;f\n",
+ * g_print ("Event box clicked at coordinates %f,%f\n",
* event->x, event->y);
*
- * /<!---->* Returning TRUE means we handled the event, so the signal
- * * emission should be stopped (don’t call any further
- * * callbacks that may be connected). Return FALSE
- * * to continue invoking callbacks.
- * *<!---->/
+ * /&ast; Returning TRUE means we handled the event, so the signal
+ * &ast; emission should be stopped (don’t call any further
+ * &ast; callbacks that may be connected). Return FALSE
+ * &ast; to continue invoking callbacks.
+ * &ast;/
* return TRUE;
* }
*
@@ -102,7 +102,7 @@
*
* image = gtk_image_new_from_file ("myfile.png");
*
- * event_box = gtk_event_box_new (<!-- -->);
+ * event_box = gtk_event_box_new ();
*
* gtk_container_add (GTK_CONTAINER (event_box), image);
*