Changeset 51642 in vbox
- Timestamp:
- Jun 18, 2014 4:18:05 AM (10 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
-
Devices/Network/slirp/slirp_dns.c (modified) (1 diff)
-
Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp (modified) (6 diffs)
-
Main/src-client/VMMDevInterface.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp_dns.c
r50129 r51642 196 196 else if (pData->fUseDnsProxy == 0) { 197 197 /* We detects that using some address in 127/8 network */ 198 LogRel(("NAT: DNS server %RTnaipv4 registration detected, switching to the DNS proxy .\n", address->IPv4));198 LogRel(("NAT: DNS server %RTnaipv4 registration detected, switching to the DNS proxy\n", address->IPv4)); 199 199 pData->fUseDnsProxy = 1; 200 200 pData->fUseHostResolver = 0; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r51627 r51642 206 206 /* Widget resize is NOT thread-safe and *probably* never will be, 207 207 * We have to notify machine-view with the async-signal to perform resize operation. */ 208 LogRel(("UIFrameBuffer::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler ..\n",208 LogRel(("UIFrameBuffer::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n", 209 209 (unsigned long)uScreenId, 210 210 (unsigned long)uX, (unsigned long)uY, … … 251 251 /* Widget update is NOT thread-safe and *seems* never will be, 252 252 * We have to notify machine-view with the async-signal to perform update operation. */ 253 LogRel2(("UIFrameBuffer::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler ..\n",253 LogRel2(("UIFrameBuffer::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n", 254 254 (unsigned long)uX, (unsigned long)uY, 255 255 (unsigned long)uWidth, (unsigned long)uHeight)); … … 382 382 m_syncVisibleRegion = region; 383 383 /* And send async-signal to update asynchronous one: */ 384 LogRel2(("UIFrameBuffer::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler ..\n",384 LogRel2(("UIFrameBuffer::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler\n", 385 385 (unsigned long)uCount)); 386 386 emit sigSetVisibleRegion(region); … … 390 390 /* Save the region. */ 391 391 m_pendingSyncVisibleRegion = region; 392 LogRel2(("UIFrameBuffer::SetVisibleRegion: Rectangle count=%lu, Saved ..\n",392 LogRel2(("UIFrameBuffer::SetVisibleRegion: Rectangle count=%lu, Saved\n", 393 393 (unsigned long)uCount)); 394 394 } … … 528 528 { 529 529 LogRel(("UIFrameBuffer::resizeEvent: " 530 "Directly using source-bitmap content ..\n"));530 "Directly using source-bitmap content\n")); 531 531 532 532 /* Acquire source-bitmap attributes: */ … … 581 581 582 582 /* And send async-signal to update asynchronous one: */ 583 LogRel2(("UIFrameBuffer::resizeEvent: Rectangle count=%lu, Sending to async-handler ..\n",583 LogRel2(("UIFrameBuffer::resizeEvent: Rectangle count=%lu, Sending to async-handler\n", 584 584 (unsigned long)m_syncVisibleRegion.rectCount())); 585 585 emit sigSetVisibleRegion(m_syncVisibleRegion); -
trunk/src/VBox/Main/src-client/VMMDevInterface.cpp
r51612 r51642 852 852 PPDMILEDPORTS pLedPort; 853 853 854 LogRel(("Shared Folders service loaded .\n"));854 LogRel(("Shared Folders service loaded\n")); 855 855 pLedPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMILEDPORTS); 856 856 AssertMsgReturn(pLedPort, ("Configuration error: No LED port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
Note:
See TracChangeset
for help on using the changeset viewer.

