diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-12-05 14:35:12 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-12-05 14:35:12 +0100 |
commit | 2e1b92d4e20127233252abadd70081713de997d8 (patch) | |
tree | 210fda4e52c9c795bc136488a15016a568aec78b /plugins/filebrowser/pluma-file-browser-widget.c | |
parent | bbbc19b5ab0f8837881c1edda9844a835a74f976 (diff) | |
download | pluma-2e1b92d4e20127233252abadd70081713de997d8.tar.bz2 pluma-2e1b92d4e20127233252abadd70081713de997d8.tar.xz |
GTK3 filebrowser-widget.c: fix build with gtk+-3.14
- improve https://github.com/mate-desktop/pluma/commit/3d2d796
Diffstat (limited to 'plugins/filebrowser/pluma-file-browser-widget.c')
-rw-r--r-- | plugins/filebrowser/pluma-file-browser-widget.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/filebrowser/pluma-file-browser-widget.c b/plugins/filebrowser/pluma-file-browser-widget.c index 7cef34cc..264408ff 100644 --- a/plugins/filebrowser/pluma-file-browser-widget.c +++ b/plugins/filebrowser/pluma-file-browser-widget.c @@ -2113,6 +2113,9 @@ async_free (AsyncData *async) static void set_busy (PlumaFileBrowserWidget *obj, gboolean busy) { +#if !GTK_CHECK_VERSION (3, 16, 0) + GdkCursor *cursor; +#endif GdkWindow *window; window = gtk_widget_get_window (GTK_WIDGET (obj->priv->treeview)); |