From 870564fdb0ff73ecb54e3ebea20127f45e457aba Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 10 Aug 2010 19:30:58 +0000 Subject: [PATCH] - MGR: Possible fix for vtable reference issue. clientgui/ WizardAttach.cpp, .h svn path=/trunk/boinc/; revision=22178 --- clientgui/WizardAttach.cpp | 10 +++++----- clientgui/WizardAttach.h | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/clientgui/WizardAttach.cpp b/clientgui/WizardAttach.cpp index 810e288981..da3c599f25 100644 --- a/clientgui/WizardAttach.cpp +++ b/clientgui/WizardAttach.cpp @@ -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 diff --git a/clientgui/WizardAttach.h b/clientgui/WizardAttach.h index faf400e8fe..3b4fbe8f22 100644 --- a/clientgui/WizardAttach.h +++ b/clientgui/WizardAttach.h @@ -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();