mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 21:12:47 -05:00
GTK3 port: respell GDK_WINDOW_XWINDOW / GDK_DRAWABLE_XID.
GDK3 now spells both of those as GDK_WINDOW_XID. (Of course 'drawable' is no longer a relevant concept in GDK3, since pixmaps are no longer supported and so all drawables are just windows.) We keep backwards compatibility, of course.
This commit is contained in:
@ -511,6 +511,8 @@ static int x11font_has_glyph(unifont *font, wchar_t glyph)
|
||||
|
||||
#if !GTK_CHECK_VERSION(2,0,0)
|
||||
#define GDK_DRAWABLE_XID(d) GDK_WINDOW_XWINDOW(d) /* GTK1's name for this */
|
||||
#elif GTK_CHECK_VERSION(3,0,0)
|
||||
#define GDK_DRAWABLE_XID(d) GDK_WINDOW_XID(d) /* GTK3's name for this */
|
||||
#endif
|
||||
|
||||
static int x11font_width_16(unifont_drawctx *ctx, x11font_individual *xfi,
|
||||
|
Reference in New Issue
Block a user