Changeset 28294 in vbox for trunk/src/VBox
- Timestamp:
- Apr 14, 2010 11:33:35 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60046
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/context.c
r26910 r28294 578 578 0, 0, x, y, &child)) 579 579 { 580 crWarning("Failed to get windows geometry for % x, try xwininfo", (int)window);580 crWarning("Failed to get windows geometry for %p, try xwininfo", window); 581 581 *x = *y = 0; 582 582 *w = *h = 0; -
trunk/src/VBox/Additions/common/crOpenGL/stub.c
r21576 r28294 468 468 if (!pGLRects) 469 469 { 470 crWarning("stubUpdateWindowVisibileRegions: failed to allocate %i bytes", 4*cRects*sizeof(GLint)); 470 crWarning("stubUpdateWindowVisibileRegions: failed to allocate %lu bytes", 471 (unsigned long)(4*cRects*sizeof(GLint))); 471 472 return GL_FALSE; 472 473 } -
trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp
r28290 r28294 4658 4658 void VBoxGlobal::showRegistrationDialog (bool aForce) 4659 4659 { 4660 NOREF(aForce); 4660 4661 #ifdef VBOX_WITH_REGISTRATION 4661 4662 if (!aForce && !UIRegistrationWzd::hasToBeShown()) -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r28279 r28294 1257 1257 /* Get the sender() menu: */ 1258 1258 QMenu *pMenu = qobject_cast<QMenu*>(sender()); 1259 #ifdef RT_STRICT 1259 1260 QMenu *pUSBDevicesMenu = actionsPool()->action(UIActionIndex_Menu_USBDevices)->menu(); 1261 #endif 1260 1262 AssertMsg(pMenu == pUSBDevicesMenu, ("This slot should only be called on hovering USB menu!\n")); 1261 1263 pMenu->clear();
Note:
See TracChangeset
for help on using the changeset viewer.