Changeset 69046 in vbox for trunk/src/VBox/Main
- Timestamp:
- Oct 11, 2017 4:11:23 PM (7 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/QMTranslatorImpl.cpp
r65665 r69046 242 242 * if Hashes section goes in the file before Message section */ 243 243 m_messageArray.reserve(sLen >> 3); 244 /* fall thru */244 RT_FALL_THRU(); 245 245 case Context: 246 246 stream.seek(sLen); -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r68992 r69046 1158 1158 LogFlowFunc(("External auth asked for guest judgement\n")); 1159 1159 } 1160 /* fall thru */1160 RT_FALL_THRU(); 1161 1161 1162 1162 case AuthType_Guest: … … 8583 8583 default: 8584 8584 AssertFailed(); 8585 /* fall through */8585 RT_FALL_THRU(); 8586 8586 case MachineState_Stopping: 8587 8587 /* successfully powered down */ -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r69009 r69046 1454 1454 default: 1455 1455 Assert(false); 1456 /* fall thru */1456 RT_FALL_THRU(); 1457 1457 case ChipsetType_PIIX3: 1458 1458 InsertConfigNode(pDevices, "pci", &pDev); -
trunk/src/VBox/Main/src-client/ConsoleImplTeleporter.cpp
r67914 r69046 891 891 default: 892 892 AssertMsgFailed(("%s\n", VMR3GetStateName(enmVMState))); 893 /* fall thru */893 RT_FALL_THRU(); 894 894 case VMSTATE_SUSPENDED: 895 895 case VMSTATE_SUSPENDED_LS: -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r67914 r69046 3077 3077 case (FileAccessMode_T)FileAccessMode_ReadWrite: openInfo.mpszAccessMode = "r+"; break; 3078 3078 case (FileAccessMode_T)FileAccessMode_AppendOnly: 3079 /* fall thru */3079 RT_FALL_THRU(); 3080 3080 case (FileAccessMode_T)FileAccessMode_AppendRead: 3081 3081 return setError(E_NOTIMPL, tr("Append access modes are not yet implemented")); -
trunk/src/VBox/Main/src-server/HostUSBDeviceImpl.cpp
r68530 r69046 1290 1290 case kHostUSBDeviceState_UsedByHost: 1291 1291 fIsImportant = true; 1292 /* fall thru */1292 RT_FALL_THRU(); 1293 1293 case kHostUSBDeviceState_Unused: 1294 1294 LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_Capturable))); … … 1858 1858 case kHostUSBDeviceState_Unused: 1859 1859 fFilters = true; 1860 /* fall thru */1860 RT_FALL_THRU(); 1861 1861 case kHostUSBDeviceState_PhysDetached: 1862 1862 Assert(aNewPendingState == kHostUSBDeviceState_Invalid); … … 1878 1878 case kHostUSBDeviceState_Unused: 1879 1879 fFilters = true; /* Wildcard only... */ 1880 /* fall thru */1880 RT_FALL_THRU(); 1881 1881 case kHostUSBDeviceState_UsedByHost: 1882 1882 case kHostUSBDeviceState_PhysDetached: … … 2298 2298 case kHostUSBDeviceSubState_AwaitingReAttach: 2299 2299 enmSub = kHostUSBDeviceSubState_Default; 2300 /* fall thru */2300 RT_FALL_THRU(); 2301 2301 case kHostUSBDeviceSubState_Default: 2302 2302 switch (enmPending) … … 2327 2327 case kHostUSBDeviceSubState_AwaitingReAttach: 2328 2328 enmSub = kHostUSBDeviceSubState_Default; 2329 /* fall thru */2329 RT_FALL_THRU(); 2330 2330 case kHostUSBDeviceSubState_Default: 2331 2331 switch (enmPending) … … 2356 2356 case kHostUSBDeviceSubState_AwaitingReAttach: 2357 2357 enmSub = kHostUSBDeviceSubState_Default; 2358 /* fall thru */2358 RT_FALL_THRU(); 2359 2359 case kHostUSBDeviceSubState_Default: 2360 2360 switch (enmPending) … … 2382 2382 case kHostUSBDeviceSubState_AwaitingReAttach: 2383 2383 enmSub = kHostUSBDeviceSubState_Default; 2384 /* fall thru */2384 RT_FALL_THRU(); 2385 2385 case kHostUSBDeviceSubState_Default: 2386 2386 switch (enmPending) … … 2471 2471 case kHostUSBDeviceSubState_AwaitingDetach: 2472 2472 enmSub = kHostUSBDeviceSubState_Default; 2473 /* fall thru */2473 RT_FALL_THRU(); 2474 2474 case kHostUSBDeviceSubState_Default: 2475 2475 enmState = mPrevUniState; -
trunk/src/VBox/Main/xml/Settings.cpp
r68956 r69046 5952 5952 case PortMode_HostPipe: 5953 5953 pelmPort->setAttribute("server", port.fServer); 5954 /* fall thru */5954 RT_FALL_THRU(); 5955 5955 case PortMode_HostDevice: 5956 5956 case PortMode_RawFile: … … 6002 6002 break; 6003 6003 } 6004 /* fall through */6004 RT_FALL_THRU(); 6005 6005 case AudioControllerType_AC97: 6006 6006 default:
Note:
See TracChangeset
for help on using the changeset viewer.