From 4fbdbe250e0cee0c76ffb521b658c93f192539f8 Mon Sep 17 00:00:00 2001 From: infirit Date: Sun, 14 Dec 2014 15:46:56 +0100 Subject: Fix deprecated functions Remove, now unneeded, gdkkeysyms-compat.h include Always use gtk_combo_box_text_new (since Gtk+ 2.24) Gtk3: do not use gdk_cursor_unref Gtk3: replace gtk_hpaned_new Gtk3: replace gtk_widget_modify_font --- mate-dictionary/src/gdict-window.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mate-dictionary/src') diff --git a/mate-dictionary/src/gdict-window.c b/mate-dictionary/src/gdict-window.c index 6b60dda0..e25ef30c 100644 --- a/mate-dictionary/src/gdict-window.c +++ b/mate-dictionary/src/gdict-window.c @@ -1798,7 +1798,11 @@ gdict_window_constructor (GType type, gtk_box_pack_start (GTK_BOX (hbox), window->entry, TRUE, TRUE, 0); gtk_widget_show (window->entry); +#if GTK_CHECK_VERSION (3, 0, 0) + handle = gtk_paned_new (GTK_ORIENTATION_HORIZONTAL) +#else handle = gtk_hpaned_new (); +#endif gtk_box_pack_start (GTK_BOX (vbox), handle, TRUE, TRUE, 0); gtk_widget_show (handle); -- cgit v1.2.1