Changeset 57628 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 4, 2015 1:05:51 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r57591 r57628 183 183 { 184 184 return (message(pParent, type, strMessage, strDetails, pcszAutoConfirmId, 185 AlertButton_Ok | AlertButtonOption_Default,186 AlertButton_Cancel | AlertButtonOption_ Escape,185 AlertButton_Ok, 186 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 187 187 0 /* third button */, 188 188 strOkButtonText, … … 220 220 { 221 221 return (question(pParent, type, strMessage, pcszAutoConfirmId, 222 AlertButton_Ok | AlertButtonOption_Default,223 AlertButton_Cancel | AlertButtonOption_ Escape,222 AlertButton_Ok, 223 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 224 224 0 /* third button */, 225 225 strOkButtonText, … … 670 670 strText, QString(), 671 671 0 /* auto-confirm id */, 672 AlertButton_Ok | AlertButtonOption_Default,673 AlertButton_Cancel | AlertButtonOption_ Escape,672 AlertButton_Ok, 673 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 674 674 0, 675 675 tr("Remove")) : … … 678 678 0 /* auto-confirm id */, 679 679 AlertButton_Choice1, 680 AlertButton_Choice2 | AlertButtonOption_Default,681 AlertButton_Cancel | AlertButtonOption_ Escape,680 AlertButton_Choice2, 681 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 682 682 tr("Delete all files"), 683 683 tr("Remove only")); … … 831 831 tr("Create a snapshot of the current machine state"), 832 832 !gEDataManager->messagesWithInvertedOption().contains("confirmSnapshotRestoring"), 833 AlertButton_Ok | AlertButtonOption_Default,834 AlertButton_Cancel | AlertButtonOption_ Escape,833 AlertButton_Ok, 834 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 835 835 0 /* 3rd button */, 836 836 tr("Restore"), tr("Cancel"), QString() /* 3rd button text */) : … … 840 840 QString() /* details */, 841 841 0 /* auto-confirm id */, 842 AlertButton_Ok | AlertButtonOption_Default,843 AlertButton_Cancel | AlertButtonOption_ Escape,842 AlertButton_Ok, 843 AlertButton_Cancel | AlertButtonOption_Default | AlertButtonOption_Escape, 844 844 0 /* 3rd button */, 845 845 tr("Restore"), tr("Cancel"), QString() /* 3rd button text */);
Note:
See TracChangeset
for help on using the changeset viewer.