Changeset 97600 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 17, 2022 5:41:35 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManager.cpp
r97597 r97600 1154 1154 { 1155 1155 /* What type of dialog should we delete? */ 1156 enum DelType { None, Local, Cloud, All } enmType = All;1156 enum DelType { None, Local, Cloud, All } enmType = None; 1157 1157 if (qobject_cast<UISettingsDialog*>(sender())) 1158 1158 enmType = (DelType)(enmType | Local); 1159 1159 else if (qobject_cast<UICloudMachineSettingsDialog*>(sender())) 1160 1160 enmType = (DelType)(enmType | Cloud); 1161 1162 /* It's all if nothing: */ 1163 if (enmType == None) 1164 enmType = All; 1161 1165 1162 1166 /* Remove requested instances: */
Note:
See TracChangeset
for help on using the changeset viewer.