From 93651fdc329700812eec9035a4d8a3bcd452deb3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 30 Apr 2013 15:39:18 +0000 Subject: [PATCH] Compilation fix for wxFont in wxGTK1. wx/encinfo.h is not included from wx/wx.h so include it explicitly. This is the same change as was done in r73519 for wxX11/wxMotif. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk1/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gtk1/font.cpp b/src/gtk1/font.cpp index 8e9cc337df..16c8e3ae6a 100644 --- a/src/gtk1/font.cpp +++ b/src/gtk1/font.cpp @@ -24,11 +24,11 @@ #include "wx/log.h" #include "wx/settings.h" #include "wx/gdicmn.h" - #include "wx/encinfo.h" #include "wx/crt.h" #endif #include "wx/fontutil.h" +#include "wx/encinfo.h" #include "wx/utils.h" #include "wx/tokenzr.h"