From eb275151c64ee9c528e9f85f27e56e56e45af3ad Mon Sep 17 00:00:00 2001 From: ZenWalker Date: Fri, 4 Aug 2017 00:26:09 +0200 Subject: avoid deprecated gdk_screen_get_n_monitors --- applets/clock/clock.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'applets/clock') diff --git a/applets/clock/clock.c b/applets/clock/clock.c index b893b738..a1c16159 100644 --- a/applets/clock/clock.c +++ b/applets/clock/clock.c @@ -867,6 +867,9 @@ position_calendar_popup (ClockData *cd) { GtkRequisition req; GtkAllocation allocation; +#if GTK_CHECK_VERSION (3, 22, 0) + GdkDisplay *display; +#endif GdkScreen *screen; GdkRectangle monitor; GdkGravity gravity = GDK_GRAVITY_NORTH_WEST; @@ -890,8 +893,13 @@ position_calendar_popup (ClockData *cd) button_h = allocation.height; screen = gtk_window_get_screen (GTK_WINDOW (cd->calendar_popup)); +#if GTK_CHECK_VERSION (3, 22, 0) + display = gdk_screen_get_display (screen); + n = gdk_display_get_n_monitors (display); +#else n = gdk_screen_get_n_monitors (screen); +#endif for (i = 0; i < n; i++) { gdk_screen_get_monitor_geometry (screen, i, &monitor); if (x >= monitor.x && x <= monitor.x + monitor.width && -- cgit v1.2.1