From 7da13b273c8f099bc21bc463bf0b9f13c42eab31 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 14 Jun 2018 22:33:53 +0200 Subject: [PATCH] Fix wxOSX compilation problem due to missing wx/settings.h Include the header required by the code using wxSystemSettings added in 5091d878254c80a85a7287383d64168ccbf64bee See #18146. --- src/osx/carbon/statbrma.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osx/carbon/statbrma.cpp b/src/osx/carbon/statbrma.cpp index 01fe6abdd4..c4a37e01e6 100644 --- a/src/osx/carbon/statbrma.cpp +++ b/src/osx/carbon/statbrma.cpp @@ -14,6 +14,7 @@ #include "wx/statusbr.h" #include "wx/platinfo.h" +#include "wx/settings.h" #ifndef WX_PRECOMP #include "wx/dc.h"