diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-08-29 20:06:16 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-08-29 20:06:16 +0000 |
commit | 9a9d081dad1e15213348499b1b1d017f7fbd1ea2 (patch) | |
tree | 53462f332ae9f7750de1fd3d3a1fb4ed6754c0d3 /gtk/gtkimage.c | |
parent | 4dfca1aa6b8df2d0b5e879a227c5be5534b2f40f (diff) | |
download | gtk+-9a9d081dad1e15213348499b1b1d017f7fbd1ea2.tar.gz |
Don't refer to nonexisting stock ids.
2005-08-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkstatusicon-x11.c (gtk_status_icon_new_from_stock):
* gtk/gtkimage.c (gtk_image_new_from_stock): Don't
refer to nonexisting stock ids.
Diffstat (limited to 'gtk/gtkimage.c')
-rw-r--r-- | gtk/gtkimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c index 9fabd8e4d7..bb2a9232fd 100644 --- a/gtk/gtkimage.c +++ b/gtk/gtkimage.c @@ -611,7 +611,7 @@ gtk_image_new_from_pixbuf (GdkPixbuf *pixbuf) * @size: a stock icon size * * Creates a #GtkImage displaying a stock icon. Sample stock icon - * names are #GTK_STOCK_OPEN, #GTK_STOCK_EXIT. Sample stock sizes + * names are #GTK_STOCK_OPEN, #GTK_STOCK_QUIT. Sample stock sizes * are #GTK_ICON_SIZE_MENU, #GTK_ICON_SIZE_SMALL_TOOLBAR. If the stock * icon name isn't known, the image will be empty. * You can register your own stock icon names, see |