From fb99a076253d72baae095b3f51fb80390e355db6 Mon Sep 17 00:00:00 2001 From: noabody <29848078+noabody@users.noreply.github.com> Date: Thu, 28 Jul 2022 08:34:27 -0600 Subject: [PATCH] error typedef Status fix for #904 --- src/wx/panel.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index 0ddf6169..9f621731 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -2076,6 +2076,9 @@ void BasicDrawingPanel::DrawImage(wxWindowDC& dc, wxImage* im) #include #endif #ifdef __WXGTK__ // should actually check for X11, but GTK implies X11 +#ifndef Status +#define Status int +#endif #include #endif #ifdef __WXMSW__