From 4defd593dc571c24716b9cc0ab60e21577d20368 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 16 Jul 2017 15:57:54 +0200 Subject: [PATCH 1/2] Compilation fix for wxOSX when not using PCH Explicitly include wx/containr.h in a header using wxNavigationEnabled. --- include/wx/osx/radiobox.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/osx/radiobox.h b/include/wx/osx/radiobox.h index d12539f343..3b4aedb265 100644 --- a/include/wx/osx/radiobox.h +++ b/include/wx/osx/radiobox.h @@ -11,6 +11,8 @@ #ifndef _WX_RADIOBOX_H_ #define _WX_RADIOBOX_H_ +#include "wx/containr.h" + // List box item class WXDLLIMPEXP_FWD_CORE wxBitmap ; From 16fdbb4e971102429d7d8b432bca2a6b21182335 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 16 Jul 2017 15:58:27 +0200 Subject: [PATCH 2/2] Credit ikamakj for the tab navigation fixes in wxOSX See the description of https://github.com/wxWidgets/wxWidgets/pull/493. --- docs/changes.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/changes.txt b/docs/changes.txt index 8f6576841c..3bc3942310 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -189,6 +189,7 @@ wxMSW: wxOSX: +- Many fixes for tab navigation (ikamakj). - Fix handling of non-BMP characters in GetPartialTextExtents() (ARATA Mizuki). - Fix dialogs using wxFRAME_FLOAT_ON_PARENT frame as parent (Lauri Nurmi). - Implement wxGetDisplaySizeMM() and fix printing DPI (David Vanderson).