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/gtkicontheme.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/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 4b0ee84a9c..73173b1952 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -120,18 +120,18 @@ * * icon_theme = gtk_icon_theme_get_default (); * pixbuf = gtk_icon_theme_load_icon (icon_theme, - * "my-icon-name", // icon name - * 48, // size - * 0, // flags + * "my-icon-name", /* icon name */ + * 48, /* icon size */ + * 0, /* flags */ * &error); * if (!pixbuf) * { - * g_warning ("Couldn’t load icon: %s", error->message); + * g_warning ("Couldn’t load icon: %s", error->message); * g_error_free (error); * } * else * { - * // Use the pixbuf + * /* Use the pixbuf */ * g_object_unref (pixbuf); * } * ]| |