Lines Matching refs:aButtons
172 std::list< String > aButtons; in ShowNativeMessageBox() local
178 aButtons.push_back( Button::GetStandardText( BUTTON_OK ) ); in ShowNativeMessageBox()
184 aButtons.push_back( Button::GetStandardText( BUTTON_YES ) ); in ShowNativeMessageBox()
186 aButtons.push_back( Button::GetStandardText( BUTTON_NO ) ); in ShowNativeMessageBox()
197 aButtons.push_back( Button::GetStandardText( BUTTON_RETRY ) ); in ShowNativeMessageBox()
200 aButtons.push_back( Button::GetStandardText( BUTTON_CANCEL ) ); in ShowNativeMessageBox()
203 nDefButton = aButtons.size()-1; in ShowNativeMessageBox()
207 aButtons.push_back( Button::GetStandardText( BUTTON_ABORT ) ); in ShowNativeMessageBox()
209 aButtons.push_back( Button::GetStandardText( BUTTON_RETRY ) ); in ShowNativeMessageBox()
211 aButtons.push_back( Button::GetStandardText( BUTTON_IGNORE ) ); in ShowNativeMessageBox()
219 int nResult = ShowNativeDialog( rTitle, rMessage, aButtons, nDefButton ); in ShowNativeMessageBox()