diff options
author | monsta <[email protected]> | 2018-01-28 22:19:00 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-01-30 17:06:31 +0100 |
commit | 2165616a83855afbb1c9b69c736de2e7c7dfbdf8 (patch) | |
tree | 7ac83afa0d7b77e49e6bb7f8b02383693c207d22 /mate-dictionary/libgdict | |
parent | 526b193ba678a7826af232526dfec0a37836a7e5 (diff) | |
download | mate-utils-2165616a83855afbb1c9b69c736de2e7c7dfbdf8.tar.bz2 mate-utils-2165616a83855afbb1c9b69c736de2e7c7dfbdf8.tar.xz |
require GTK+ 3.22 and GLib 2.50
Diffstat (limited to 'mate-dictionary/libgdict')
-rw-r--r-- | mate-dictionary/libgdict/gdict-defbox.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mate-dictionary/libgdict/gdict-defbox.c b/mate-dictionary/libgdict/gdict-defbox.c index 69d76329..ee48c3e5 100644 --- a/mate-dictionary/libgdict/gdict-defbox.c +++ b/mate-dictionary/libgdict/gdict-defbox.c @@ -1602,23 +1602,14 @@ defbox_visibility_notify_cb (GtkWidget *text_view, GdictDefbox *defbox) { GdkDisplay *display; -#if GTK_CHECK_VERSION (3, 20, 0) GdkSeat *seat; -#else - GdkDeviceManager *device_manager; -#endif GdkDevice *pointer; gint wx, wy; gint bx, by; display = gdk_window_get_display (event->window); -#if GTK_CHECK_VERSION (3, 20, 0) seat = gdk_display_get_default_seat (display); pointer = gdk_seat_get_pointer (seat); -#else - device_manager = gdk_display_get_device_manager (display); - pointer = gdk_device_manager_get_client_pointer (device_manager); -#endif gdk_window_get_device_position (gtk_widget_get_window (text_view), pointer, &wx, &wy, NULL); gtk_text_view_window_to_buffer_coords (GTK_TEXT_VIEW (text_view), |