mirror of https://github.com/BOINC/boinc.git
Fix assert due to missing wxOK calling SafeMessageBox() in ProjectInfoPage
This commit is contained in:
parent
334f330fa9
commit
4087d5f488
|
@ -6269,6 +6269,8 @@ Charlie 28 Oct 2012
|
|||
- Fix more bad wxFlexGridSizers, etc. in Attach Wizard, Advanced Preferences,
|
||||
CDlgGenericMessage.
|
||||
- Fix assert caused by Clear() of empty Project Categories wxComboBox.
|
||||
- Fix assert due to missing wxOK calling SafeMessageBox() in ProjectInfoPage.
|
||||
|
||||
|
||||
clientgui/
|
||||
AccountInfoPage.cpp
|
||||
|
|
|
@ -790,7 +790,7 @@ void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
|
|||
wxGetApp().SafeMessageBox(
|
||||
_("You already added this project. Please choose a different project."),
|
||||
strTitle,
|
||||
wxCENTER | wxICON_INFORMATION
|
||||
wxCENTER | wxOK | wxICON_INFORMATION
|
||||
);
|
||||
|
||||
// We are already attached to that project,
|
||||
|
|
Loading…
Reference in New Issue