From 7f053ac240a03392b8209647cc72cd75f3e1accf Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 10 Aug 2010 19:10:24 +0000 Subject: [PATCH] - MGR: Possible fix for vtable reference issue. clientgui/ WizardAttach.h svn path=/trunk/boinc/; revision=22176 --- clientgui/WizardAttach.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/clientgui/WizardAttach.cpp b/clientgui/WizardAttach.cpp index d13dd467d6..24834e6523 100644 --- a/clientgui/WizardAttach.cpp +++ b/clientgui/WizardAttach.cpp @@ -78,11 +78,13 @@ END_EVENT_TABLE() * CWizardAttach constructors */ -CWizardAttach::CWizardAttach() +CWizardAttach::CWizardAttach() : + CBOINCBaseWizard() { } -CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos ) +CWizardAttach::CWizardAttach( wxWindow* parent, wxWindowID id, const wxPoint& pos ) : + CBOINCBaseWizard( parent, id, wxEmptyString, pos ) { Create(parent, id, pos); }