Changeset 49485 in vbox for trunk/src/VBox
- Timestamp:
- Nov 14, 2013 4:18:00 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.cpp
r49433 r49485 4352 4352 case VBOXVHWACMD_TYPE_QUERY_INFO1: 4353 4353 { 4354 #ifdef RT_STRICT 4354 4355 VBOXVHWACMD_QUERYINFO1 * pBody = VBOXVHWACMD_BODY(pCmd, VBOXVHWACMD_QUERYINFO1); 4356 #endif 4355 4357 Assert(pBody->u.in.guestVersion.maj == VBOXVHWA_VERSION_MAJ); 4356 4358 Assert(pBody->u.in.guestVersion.min == VBOXVHWA_VERSION_MIN); … … 5037 5039 5038 5040 VBoxVHWACommandElement *pCur; 5039 RTListForEach (&mCommandList, pCur, VBoxVHWACommandElement, ListNode)5041 RTListForEachCpp(&mCommandList, pCur, VBoxVHWACommandElement, ListNode) 5040 5042 { 5041 5043 ++cEventsNeeded; … … 5117 5119 } 5118 5120 5119 pEl = RTListGetFirst (&mCommandList, VBoxVHWACommandElement, ListNode);5121 pEl = RTListGetFirstCpp(&mCommandList, VBoxVHWACommandElement, ListNode); 5120 5122 if (pEl) 5121 5123 { … … 5155 5157 RTCritSectLeave(&mCritSect); 5156 5158 5157 RTListForEachSafe (&mCommandList, pCur, pNext, VBoxVHWACommandElement, ListNode)5159 RTListForEachSafeCpp(&mCommandList, pCur, pNext, VBoxVHWACommandElement, ListNode) 5158 5160 { 5159 5161 switch(pCur->type()) … … 5283 5285 5284 5286 VBoxVHWACommandElement *pCur; 5285 RTListForEach (&mCommandList, pCur, VBoxVHWACommandElement, ListNode)5287 RTListForEachCpp(&mCommandList, pCur, VBoxVHWACommandElement, ListNode) 5286 5288 { 5287 5289 rc = SSMR3PutU32(pSSM, pCur->type()); AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.