[Xfce4-commits] [apps/xfce4-dict] 23/43: Replace gdk_cursor_unref by g_object_unref
noreply at xfce.org
noreply at xfce.org
Tue Nov 1 00:31:36 CET 2016
This is an automated email from the git hooks/post-receive script.
andre pushed a commit to branch master
in repository apps/xfce4-dict.
commit 5dde15c389fb75eec17bb7d2a99f10e60de00b40
Author: Andre Miranda <andre42m at gmail.com>
Date: Thu Jul 21 00:04:21 2016 -0300
Replace gdk_cursor_unref by g_object_unref
---
lib/gui.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/gui.c b/lib/gui.c
index ca9048e..237e0a3 100644
--- a/lib/gui.c
+++ b/lib/gui.c
@@ -803,9 +803,9 @@ static GtkWidget *create_file_menu(DictData *dd)
void dict_gui_finalize(DictData *dd)
{
if (hand_cursor)
- gdk_cursor_unref(hand_cursor);
+ g_object_unref (hand_cursor);
if (regular_cursor)
- gdk_cursor_unref(regular_cursor);
+ g_object_unref (regular_cursor);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list