I have been testing the Scripted Wizard when CB is built with wxWidgets 3.0 and found an issue.
This patch fixes the Intro display screen (for CB Plugin Wizard) from being cut-off to soon.
I have tested with wxWidgets 3.0 32 bit only on Windows.
I have only tested the CB Plugin Wizard; too tired to test the others tonight.
Index: src/plugins/scriptedwizard/infopanel.cpp
===================================================================
--- src/plugins/scriptedwizard/infopanel.cpp (revision 9575)
+++ src/plugins/scriptedwizard/infopanel.cpp (working copy)
@@ -27,7 +27,7 @@
//(*Initialize(InfoPanel)
Create(parent, id, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL, _T("id"));
BoxSizer1 = new wxBoxSizer(wxVERTICAL);
- lblIntro = new wxStaticText(this, ID_STATICTEXT1, _("Welcome to the new console application wizard!\n\n\n\n\n\n\n\n\n\n\n\n\n\n"), wxDefaultPosition, wxDefaultSize, wxST_NO_AUTORESIZE, _T("ID_STATICTEXT1"));
+ lblIntro = new wxStaticText(this, ID_STATICTEXT1, _("Welcome to the new console application wizard!\n\n\n\n\n\n\n\n\n\n\n\n\n\n"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1"));
BoxSizer1->Add(lblIntro, 1, wxALL|wxEXPAND|wxALIGN_LEFT|wxALIGN_TOP, 8);
chkSkip = new wxCheckBox(this, ID_CHECKBOX1, _("Skip this page next time"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_CHECKBOX1"));
chkSkip->SetValue(false);