Quick Updates

svn path=/trunk/boinc/; revision=22177
This commit is contained in:
Rom Walton 2010-08-10 19:19:13 +00:00
parent 7f053ac240
commit 6e2ffcf6ac
2 changed files with 6 additions and 8 deletions

View File

@ -67,11 +67,9 @@ IMPLEMENT_DYNAMIC_CLASS( CWizardAttach, CBOINCBaseWizard )
*/
BEGIN_EVENT_TABLE( CWizardAttach, CBOINCBaseWizard )
////@begin CWizardAttach event table entries
EVT_WIZARDEX_FINISHED( ID_ATTACHWIZARD, CWizardAttach::OnFinished )
////@end CWizardAttach event table entries
END_EVENT_TABLE()
/*!
@ -83,17 +81,17 @@ CWizardAttach::CWizardAttach() :
{
}
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos ) :
CBOINCBaseWizard( parent, id, wxEmptyString, pos )
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos ) :
CBOINCBaseWizard( parent, id, title, pos )
{
Create(parent, id, pos);
Create(parent, id, title, pos);
}
/*!
* 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

View File

@ -188,10 +188,10 @@ class CWizardAttach: public CBOINCBaseWizard
public:
/// Constructors
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
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
void CreateControls();