From e7fa84da925256b9e49265589c80ebedc463ee6d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 12 Sep 2019 19:21:11 -0700 Subject: [PATCH] Changelog updates for recent changes (cherry picked from commit af214853ee5267cf8b9b7008a9c98cf0ef49cf60) --- CHANGES.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index b856ef39..2207f028 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -32,7 +32,12 @@ This release provides the following fixes: a reference to the DC, to ensure that the DCOverlay is destroyed first. (PR#1301) +* Ported the embedding sample from Classic, which shows how to use wxPython from + a C++ wxWidgets application that embeds Python. (PR #1353) +* Fixed wx.GetApp() to use wxWidgets' global wxApp instance instead of + maintaining its own pointer. This way, if the wxApp is created by C++ code + wxPython will still be able to get access to it. (#1126)