- MGR: Possible fix for vtable reference issue.

clientgui/
        WizardAttach.h

svn path=/trunk/boinc/; revision=22176
This commit is contained in:
Rom Walton 2010-08-10 19:10:24 +00:00
parent 349ed210d8
commit 7f053ac240
1 changed files with 4 additions and 2 deletions

View File

@ -78,11 +78,13 @@ END_EVENT_TABLE()
* CWizardAttach constructors
*/
CWizardAttach::CWizardAttach()
CWizardAttach::CWizardAttach() :
CBOINCBaseWizard()
{
}
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos )
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos ) :
CBOINCBaseWizard( parent, id, wxEmptyString, pos )
{
Create(parent, id, pos);
}