- if (m_buttonCancel)
- Add((wxWindow*)m_buttonCancel,
- 0, wxALIGN_CENTRE | wxLEFT | wxRIGHT, 3);
-
- if (m_buttonAffirmative)
- Add((wxWindow*)m_buttonAffirmative,
- 0, wxALIGN_CENTRE | wxLEFT, 6);
+ // "No Yes Cancel" is an exception to the general rule according to
+ // which the affirmative buttons goes after "Cancel" so treat it
+ // separately
+ if ( IsStdButtonWithStdText(m_buttonNegative, wxID_NO, "No") &&
+ IsStdButtonWithStdText(m_buttonAffirmative, wxID_YES, "Yes") &&
+ IsStdButtonWithStdText(m_buttonCancel, wxID_CANCEL, "Cancel") )
+ {
+ Add(m_buttonNegative, flagsBtn);
+ Add(m_buttonAffirmative, flagsBtn);
+ Add(m_buttonCancel, flagsBtn);