mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
patch 8.1.0368: GTK code has too many #ifdefs and GTK 2.10 building fails
Problem: GTK code has too many #ifdefs and building fails with GTK 2.10. Solution: Always use gtk_widget_get_window() and define it for older GTK versions. (Ken Takata, closes #3421)
This commit is contained in:
@@ -991,11 +991,7 @@ drawBalloon(BalloonEval *beval)
|
||||
# endif
|
||||
|
||||
/* Compute position of the balloon area */
|
||||
# if GTK_CHECK_VERSION(3,0,0)
|
||||
gdk_window_get_origin(gtk_widget_get_window(beval->target), &x, &y);
|
||||
# else
|
||||
gdk_window_get_origin(beval->target->window, &x, &y);
|
||||
# endif
|
||||
x += beval->x;
|
||||
y += beval->y;
|
||||
|
||||
|
Reference in New Issue
Block a user