[Xfce4-commits] [apps/xfce4-dict] 19/43: Replace gdk_cursor_new by gdk_cursor_new_from_name

noreply at xfce.org noreply at xfce.org
Tue Nov 1 00:31:32 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 d33c20a7a1261adfbf3941150e9424117073c443
Author: Andre Miranda <andre42m at gmail.com>
Date:   Wed Jul 20 23:10:25 2016 -0300

    Replace gdk_cursor_new by gdk_cursor_new_from_name
---
 lib/gui.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/gui.c b/lib/gui.c
index 1bf69e7..f884cab 100644
--- a/lib/gui.c
+++ b/lib/gui.c
@@ -898,8 +898,8 @@ void dict_gui_create_main_window(DictData *dd)
 
 	/* support for links (cross-references) for dictd responses */
 	{
-		hand_cursor = gdk_cursor_new(GDK_HAND2);
-		regular_cursor = gdk_cursor_new(GDK_XTERM);
+		hand_cursor = gdk_cursor_new_from_name(gdk_display_get_default(), "pointer");
+		regular_cursor = gdk_cursor_new_from_name(gdk_display_get_default(), "default");
 
 		g_signal_connect(dd->main_textview, "key-press-event",
 			G_CALLBACK(textview_key_press_event), dd);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list