*** empty log message ***

svn path=/trunk/boinc/; revision=8187
This commit is contained in:
Rom Walton 2005-09-26 23:15:52 +00:00
parent e9295f18dd
commit 9d40af28d0
1 changed files with 4 additions and 2 deletions

View File

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