X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6c875e80e7a239f0581d7f8696813c52248cd24a..8a31648287be0ef976f133de2786b137f1e98340:/src/gtk/assertdlg_gtk.cpp?ds=sidebyside diff --git a/src/gtk/assertdlg_gtk.cpp b/src/gtk/assertdlg_gtk.cpp index c1902fae8f..4df435b37e 100644 --- a/src/gtk/assertdlg_gtk.cpp +++ b/src/gtk/assertdlg_gtk.cpp @@ -12,6 +12,8 @@ #include "wx/gtk/assertdlg_gtk.h" #include "wx/gtk/private/gtk2-compat.h" +#include + /* ---------------------------------------------------------------------------- Constants ---------------------------------------------------------------------------- */ @@ -42,7 +44,9 @@ GtkWidget *gtk_assert_dialog_add_button_to (GtkBox *box, const gchar *label, /* add a stock icon inside it */ GtkWidget *image = gtk_image_new_from_stock (stock, GTK_ICON_SIZE_BUTTON); +#if GTK_CHECK_VERSION(2,6,0) gtk_button_set_image (GTK_BUTTON (button), image); +#endif /* add to the given (container) widget */ if (box) @@ -353,8 +357,8 @@ static void gtk_assert_dialog_init(GtkAssertDialog* dlg) dlg->callback = NULL; dlg->userdata = NULL; - /* the resizeable property of this window is modified by the expander: - when it's collapsed, the window must be non-resizeable! */ + /* the resizable property of this window is modified by the expander: + when it's collapsed, the window must be non-resizable! */ gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE); gtk_widget_pop_composite_child (); gtk_widget_show_all (GTK_WIDGET(dlg));