1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Round 4 of wx3 changes

This gets FileDialog updated and working on Windows.  It also
removes removes the "wx3" build configurations and makes the default
Debug and Release builds wx3-only.

Still need to get VSTs updated.
This commit is contained in:
Leland Lucius
2015-07-13 16:38:24 -05:00
parent 4deccfc980
commit 2f760c4bac
38 changed files with 777 additions and 2586 deletions

View File

@@ -38,8 +38,6 @@ public:
mParent = parent;
mLink = link;
DontCreatePeer();
if (!wxControl::Create(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, wxEmptyString))
{
return false;

View File

@@ -106,6 +106,8 @@ VSTControl::~VSTControl()
bool VSTControl::Create(wxWindow *parent, VSTEffectLink *link)
{
DontCreatePeer();
if (!VSTControlBase::Create(parent, link))
{
return false;

View File

@@ -38,7 +38,10 @@
#include <limits.h>
#include <stdio.h>
#if defined(__WXMAC__)
#include <dlfcn.h>
#endif
#include <wx/app.h>
#include <wx/defs.h>