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,
|
- Fix more bad wxFlexGridSizers, etc. in Attach Wizard, Advanced Preferences,
|
||||||
CDlgGenericMessage.
|
CDlgGenericMessage.
|
||||||
- Fix assert caused by Clear() of empty Project Categories wxComboBox.
|
- Fix assert caused by Clear() of empty Project Categories wxComboBox.
|
||||||
|
- Fix assert due to missing wxOK calling SafeMessageBox() in ProjectInfoPage.
|
||||||
|
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
AccountInfoPage.cpp
|
AccountInfoPage.cpp
|
||||||
|
|
|
@ -790,7 +790,7 @@ void CProjectInfoPage::OnPageChanging( wxWizardExEvent& event ) {
|
||||||
wxGetApp().SafeMessageBox(
|
wxGetApp().SafeMessageBox(
|
||||||
_("You already added this project. Please choose a different project."),
|
_("You already added this project. Please choose a different project."),
|
||||||
strTitle,
|
strTitle,
|
||||||
wxCENTER | wxICON_INFORMATION
|
wxCENTER | wxOK | wxICON_INFORMATION
|
||||||
);
|
);
|
||||||
|
|
||||||
// We are already attached to that project,
|
// We are already attached to that project,
|
||||||
|
|
Loading…
Reference in New Issue