Remove unuseable wxPGArrayEditorDialog ctor

It calls Create(), which calls the pure virtual ArrayGetCount(), which will
crash, as the required override can't be called from the base class ctor.
This commit is contained in:
Paul Cornett
2019-02-17 18:00:26 -08:00
parent 9ea2ac92ef
commit c41ff4e694
3 changed files with 0 additions and 28 deletions

View File

@@ -2404,20 +2404,6 @@ void wxPGArrayEditorDialog::Init()
// -----------------------------------------------------------------------
wxPGArrayEditorDialog::wxPGArrayEditorDialog( wxWindow *parent,
const wxString& message,
const wxString& caption,
long style,
const wxPoint& pos,
const wxSize& sz )
: wxDialog()
{
Init();
Create(parent,message,caption,style,pos,sz);
}
// -----------------------------------------------------------------------
bool wxPGArrayEditorDialog::Create( wxWindow *parent,
const wxString& message,
const wxString& caption,