summaryrefslogtreecommitdiff
path: root/mate-dictionary/libgdict/gdict-speller.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-12-14 15:46:56 +0100
committerinfirit <[email protected]>2014-12-15 23:24:56 +0100
commit4fbdbe250e0cee0c76ffb521b658c93f192539f8 (patch)
tree517379015fc9f056d592cfa8c9fbdf177840f7ed /mate-dictionary/libgdict/gdict-speller.c
parent55f6eca4a8876718f9050191c7f67594928151c1 (diff)
downloadmate-utils-4fbdbe250e0cee0c76ffb521b658c93f192539f8.tar.bz2
mate-utils-4fbdbe250e0cee0c76ffb521b658c93f192539f8.tar.xz
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
Diffstat (limited to 'mate-dictionary/libgdict/gdict-speller.c')
-rw-r--r--mate-dictionary/libgdict/gdict-speller.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mate-dictionary/libgdict/gdict-speller.c b/mate-dictionary/libgdict/gdict-speller.c
index 3c81074e..5f370ba8 100644
--- a/mate-dictionary/libgdict/gdict-speller.c
+++ b/mate-dictionary/libgdict/gdict-speller.c
@@ -173,7 +173,11 @@ gdict_speller_finalize (GObject *gobject)
set_gdict_context (speller, NULL);
if (priv->busy_cursor)
+#if GTK_CHECK_VERSION (3, 0, 0)
+ g_object_unref (priv->busy_cursor);
+#else
gdk_cursor_unref (priv->busy_cursor);
+#endif
g_free (priv->strategy);
g_free (priv->database);