Typo.
[cl-gtk2.git] / gtk / gtk.info-bar.lisp
1 (in-package :gtk)
2
3 (defcfun (info-bar-add-button "gtk_info_bar_add_button") (g-object widget)
4   (info-bar    (g-object info-bar))
5   (button-text :string)
6   (response-id :int))
7
8 (export 'info-bar-add-button)
9
10 (defcfun (info-bar-add-action-widget "gtk_info_bar_add_action_widget") :void
11   (info-bar    (g-object info-bar))
12   (widget      (g-object widget))
13   (response-id :int))
14
15 (export 'info-bar-add-action-widget)