From: Matthias Clasen Date: Mon, 4 Nov 2019 23:24:49 +0000 (+0000) Subject: Move the ifdef to the right spot X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~20^2~656 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=53c9eb5a5b008aa64bf385aca367ccce1592b298;p=gtk4.git Move the ifdef to the right spot --- diff --git a/gtk/gtkcellrenderertext.c b/gtk/gtkcellrenderertext.c index f38a1c2bf3..a5e662fd03 100644 --- a/gtk/gtkcellrenderertext.c +++ b/gtk/gtkcellrenderertext.c @@ -1521,11 +1521,11 @@ get_layout (GtkCellRendererText *celltext, uline = PANGO_UNDERLINE_SINGLE; break; -#if PANGO_VERSION_CHECK(1,45,0) case PANGO_UNDERLINE_SINGLE: uline = PANGO_UNDERLINE_DOUBLE; break; +#if PANGO_VERSION_CHECK(1,45,0) case PANGO_UNDERLINE_SINGLE_LINE: uline = PANGO_UNDERLINE_DOUBLE_LINE; break;