diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-09 17:24:06 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-09 17:58:07 -0500 |
commit | 7f6a964c47ad2f9dcf6a00044d938840ce8f01f2 (patch) | |
tree | 89fdaf3a0f7ee34d49449c9ac241460b6a06616e /gtk/gtktogglebutton.c | |
parent | ab0574a88bc0105f6d7374a0f305fe5f0aaeb027 (diff) | |
download | gtk+-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/gtktogglebutton.c')
-rw-r--r-- | gtk/gtktogglebutton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktogglebutton.c b/gtk/gtktogglebutton.c index 785cf22f76..de12f53560 100644 --- a/gtk/gtktogglebutton.c +++ b/gtk/gtktogglebutton.c @@ -64,10 +64,10 @@ * void make_toggles (void) { * GtkWidget *dialog, *toggle1, *toggle2; * - * dialog = gtk_dialog_new (<!-- -->); + * dialog = gtk_dialog_new (); * toggle1 = gtk_toggle_button_new_with_label ("Hi, i’m a toggle button."); * - * // Makes this toggle button invisible + * /* Makes this toggle button invisible */ * gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (toggle1), TRUE); * * g_signal_connect (toggle1, "toggled", |