- Timestamp:
- Sep 14, 2015 5:40:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r57714 r57745 222 222 return fDefaultFocusForOk ? 223 223 ((question(pParent, type, strMessage, pcszAutoConfirmId, 224 AlertButton_Ok | AlertButtonOption_Default,225 AlertButton_Cancel | AlertButtonOption_Escape,226 0 /* third button */,227 strOkButtonText,228 strCancelButtonText,229 QString() /* third button */) &230 AlertButtonMask) == AlertButton_Ok) :224 AlertButton_Ok | AlertButtonOption_Default, 225 AlertButton_Cancel | AlertButtonOption_Escape, 226 0 /* third button */, 227 strOkButtonText, 228 strCancelButtonText, 229 QString() /* third button */) & 230 AlertButtonMask) == AlertButton_Ok) : 231 231 ((question(pParent, type, strMessage, pcszAutoConfirmId, 232 AlertButton_Ok,233 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape,234 0 /* third button */,235 strOkButtonText,236 strCancelButtonText,237 QString() /* third button */) &238 AlertButtonMask) == AlertButton_Ok);232 AlertButton_Ok, 233 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 234 0 /* third button */, 235 strOkButtonText, 236 strCancelButtonText, 237 QString() /* third button */) & 238 AlertButtonMask) == AlertButton_Ok); 239 239 } 240 240
Note:
See TracChangeset
for help on using the changeset viewer.