From 80ba460b1f0ee34c1643a6e6bb1e6fcee8e503b7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 6 Jul 2020 17:25:57 +0200 Subject: [PATCH] Suppress unused parameter warning in wxX11 It seems better to keep it for consistency, as all the other functions take both Drawable and GC, but it isn't being used in this particular function. --- src/x11/pango_x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x11/pango_x.cpp b/src/x11/pango_x.cpp index 41d320224b..ead07fc387 100644 --- a/src/x11/pango_x.cpp +++ b/src/x11/pango_x.cpp @@ -57,7 +57,7 @@ x11_pango_get_item_properties( PangoItem *item, void x11_draw_glyphs( Drawable drawable, - GC gc, + GC WXUNUSED(gc), PangoFont *font, int x, int y,