1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-29 23:29:41 +02:00

Use ManualPageID as a stand-in alias for wxString

Useful for eliminating many direct mentions of wxString. We added this patch
from Audacity because it coincides with our goal of becoming more platform
agnostic.

Original commits:
- cfbdd2d22ec0eca24b8f7bb2e78e7858e8a8fcf9
- 132f04d27215eb7d3ec7100e448d02af796c9106

Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
This commit is contained in:
Paul Licameli 2021-06-06 12:18:35 -04:00 committed by Panagiotis Vasilopoulos
parent b855fbeb48
commit 6daf0a29b7
No known key found for this signature in database
GPG Key ID: 9E541BDE43B99F44
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ ErrorDialog::ErrorDialog(
const TranslatableString & dlogTitle,
const TranslatableString & message,
const ManualPageID & helpPage,
const std::wstring & log,
const wxString & log,
const bool Close, const bool modal)
: wxDialogWrapper(parent, wxID_ANY, dlogTitle,
wxDefaultPosition, wxDefaultSize,

View File

@ -30,7 +30,7 @@ public:
const TranslatableString & dlogTitle,
const TranslatableString & message,
const ManualPageID & helpPage,
const std::wstring & log,
const wxString & log,
const bool Close = true, const bool modal = true);
virtual ~ErrorDialog(){}