diff options
author | Timm Bäder <mail@baedert.org> | 2016-10-16 13:12:16 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-10-18 00:29:20 +0200 |
commit | bc7206d70f8f3721da24967d5e7199710a556f13 (patch) | |
tree | aeb9efed084993803e8ec7f8ba63abc9edb72d7e /gtk/gtkinfobar.c | |
parent | cf56decbb43057e75f980f7ebef94352e9152519 (diff) | |
download | gtk+-bc7206d70f8f3721da24967d5e7199710a556f13.tar.gz |
Remove GtkStock
Diffstat (limited to 'gtk/gtkinfobar.c')
-rw-r--r-- | gtk/gtkinfobar.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gtk/gtkinfobar.c b/gtk/gtkinfobar.c index 9974f72bdd..54abb2ead0 100644 --- a/gtk/gtkinfobar.c +++ b/gtk/gtkinfobar.c @@ -49,7 +49,6 @@ #include "gtkrender.h" #include "gtktypebuiltins.h" #include "gtkwidgetprivate.h" -#include "deprecated/gtkstock.h" /** * SECTION:gtkinfobar @@ -655,7 +654,7 @@ add_buttons_valist (GtkInfoBar *info_bar, /** * gtk_info_bar_add_buttons: * @info_bar: a #GtkInfoBar - * @first_button_text: button text or stock ID + * @first_button_text: button text * @...: response ID for first button, then more text-response_id pairs, * ending with %NULL * @@ -695,14 +694,13 @@ gtk_info_bar_new (void) /** * gtk_info_bar_new_with_buttons: - * @first_button_text: (allow-none): stock ID or text to go in first button, or %NULL + * @first_button_text: (allow-none): ext to go in first button, or %NULL * @...: response ID for first button, then additional buttons, ending * with %NULL * * Creates a new #GtkInfoBar with buttons. Button text/response ID * pairs should be listed, with a %NULL pointer ending the list. - * Button text can be either a stock ID such as %GTK_STOCK_OK, or - * some arbitrary text. A response ID can be any positive number, + * A response ID can be any positive number, * or one of the values in the #GtkResponseType enumeration. If the * user clicks one of these dialog buttons, GtkInfoBar will emit * the “response” signal with the corresponding response ID. |