mirror of https://github.com/BOINC/boinc.git
- MGR: Possible fix for vtable reference issue.
clientgui/ WizardAttach.h svn path=/trunk/boinc/; revision=22176
This commit is contained in:
parent
349ed210d8
commit
7f053ac240
|
@ -78,11 +78,13 @@ END_EVENT_TABLE()
|
||||||
* CWizardAttach constructors
|
* 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);
|
Create(parent, id, pos);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue