From: Kouhei S. <ko...@co...> - 2015-09-27 01:42:32
|
Hi, In <144...@ss...> "Re: [ruby-gnome2-devel-en] [ANN] Ruby-GNOME2 3.0.4" on Sat, 26 Sep 2015 20:42:01 +0200, Stefan Salewski <ma...@ss...> wrote: > I am not absolutely sure, but may these 4 remaining warnings be caused > not by my application, but by your ruby-gnome2 bingings itself? > GLib-GObject-WARNING **:The property GtkWidget:style is deprecated and shouldn't be used anymore. It will be removed in a future version. It's caused by GC mark function in bindings. > GLib-GObject-WARNING **:The property GtkButton:use-stock is deprecated and shouldn't be used anymore. It will be removed in a future version. It's caused by your application. Please confirm whether you use :stock_id in Gtk::Button.new or not. > GLib-GObject-WARNING **:The property GtkSettings:gtk-button-images is deprecated and shouldn't be used anymore. It will be removed in a future version. It's caused by your application. Add the following code: button.always_show_image = true See also: * https://developer.gnome.org/gtk3/stable/GtkButton.html#gtk-button-set-always-show-image * https://developer.gnome.org/gtk3/stable/GtkSettings.html#GtkSettings--gtk-button-images > GLib-GObject-WARNING **:The property GtkImageMenuItem:image is deprecated and shouldn't be used anymore. It will be removed in a future version. It's caused by GC mark function in bindings. Thanks, -- kou |