GTK3: replace reprecatated gdk_cursor functions

- Gtk+-3.16: gdk_cursor_new --> gdk_cursor_new_for_display
- GTK3: gdk_cursor_unref --> g_object_unref
This commit is contained in:
Wolfgang Ulbrich
2015-11-20 01:46:26 +01:00
parent e357519c94
commit cf7db5e02e
3 changed files with 58 additions and 4 deletions

View File

@@ -49,6 +49,10 @@
#define PLUMA_TAB_KEY "PLUMA_TAB_KEY"
#if GTK_CHECK_VERSION (3, 0, 0)
#define gdk_cursor_unref(cursor) g_object_unref (cursor)
#endif
struct _PlumaTabPrivate
{
PlumaTabState state;