- MGR: Possible fix for vtable reference issue.

clientgui/
        WizardAttach.cpp, .h


svn path=/trunk/boinc/; revision=22178
This commit is contained in:
Rom Walton 2010-08-10 19:30:58 +00:00
parent 6e2ffcf6ac
commit 870564fdb0
2 changed files with 7 additions and 7 deletions

View File

@ -81,17 +81,17 @@ CWizardAttach::CWizardAttach() :
{
}
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos ) :
CBOINCBaseWizard( parent, id, title, pos )
CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, long style ) :
CBOINCBaseWizard( parent, id, title, pos, style )
{
Create(parent, id, title, pos);
Create(parent, id, title, pos, style);
}
/*!
* CWizardAttach creator
*/
bool CWizardAttach::Create( wxWindow* parent, wxWindowID id, const wxString& /* title */, const wxPoint& pos )
bool CWizardAttach::Create( wxWindow* parent, wxWindowID id, const wxString& /* title */, const wxPoint& pos, long style )
{
////@begin CWizardAttach member initialisation
@ -158,7 +158,7 @@ bool CWizardAttach::Create( wxWindow* parent, wxWindowID id, const wxString& /*
}
////@begin CWizardAttach creation
CBOINCBaseWizard::Create( parent, id, strTitle, pos );
CBOINCBaseWizard::Create( parent, id, strTitle, pos, style );
CreateControls();
////@end CWizardAttach creation

View File

@ -188,10 +188,10 @@ class CWizardAttach: public CBOINCBaseWizard
public:
/// Constructors
CWizardAttach( );
CWizardAttach( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition );
CWizardAttach( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, long style = wxDEFAULT_DIALOG_STYLE );
/// Creation
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition );
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CWIZARDATTACH_IDNAME, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, long style = wxDEFAULT_DIALOG_STYLE );
/// Creates the controls and sizers
void CreateControls();