mirror of https://github.com/BOINC/boinc.git
parent
7f053ac240
commit
6e2ffcf6ac
|
@ -67,11 +67,9 @@ IMPLEMENT_DYNAMIC_CLASS( CWizardAttach, CBOINCBaseWizard )
|
||||||
*/
|
*/
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE( CWizardAttach, CBOINCBaseWizard )
|
BEGIN_EVENT_TABLE( CWizardAttach, CBOINCBaseWizard )
|
||||||
|
|
||||||
////@begin CWizardAttach event table entries
|
////@begin CWizardAttach event table entries
|
||||||
EVT_WIZARDEX_FINISHED( ID_ATTACHWIZARD, CWizardAttach::OnFinished )
|
EVT_WIZARDEX_FINISHED( ID_ATTACHWIZARD, CWizardAttach::OnFinished )
|
||||||
////@end CWizardAttach event table entries
|
////@end CWizardAttach event table entries
|
||||||
|
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -83,17 +81,17 @@ CWizardAttach::CWizardAttach() :
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos ) :
|
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos ) :
|
||||||
CBOINCBaseWizard( parent, id, wxEmptyString, pos )
|
CBOINCBaseWizard( parent, id, title, pos )
|
||||||
{
|
{
|
||||||
Create(parent, id, pos);
|
Create(parent, id, title, pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* CWizardAttach creator
|
* CWizardAttach creator
|
||||||
*/
|
*/
|
||||||
|
|
||||||
bool CWizardAttach::Create( wxWindow* parent, wxWindowID id, const wxPoint& pos )
|
bool CWizardAttach::Create( wxWindow* parent, wxWindowID id, const wxString& /* title */, const wxPoint& pos )
|
||||||
{
|
{
|
||||||
|
|
||||||
////@begin CWizardAttach member initialisation
|
////@begin CWizardAttach member initialisation
|
||||||
|
|
|
@ -188,10 +188,10 @@ class CWizardAttach: public CBOINCBaseWizard
|
||||||
public:
|
public:
|
||||||
/// Constructors
|
/// Constructors
|
||||||
CWizardAttach( );
|
CWizardAttach( );
|
||||||
CWizardAttach( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxPoint& pos = wxDefaultPosition );
|
CWizardAttach( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition );
|
||||||
|
|
||||||
/// Creation
|
/// Creation
|
||||||
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxPoint& pos = wxDefaultPosition );
|
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition );
|
||||||
|
|
||||||
/// Creates the controls and sizers
|
/// Creates the controls and sizers
|
||||||
void CreateControls();
|
void CreateControls();
|
||||||
|
|
Loading…
Reference in New Issue