Changeset 28597 in vbox
- Timestamp:
- Apr 22, 2010 2:07:51 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIIndicatorsPool.cpp
r28579 r28597 343 343 344 344 CUSBController usbctl = machine.GetUSBController(); 345 setState(!usbctl.isNull() && usbctl.GetEnabled() && usbctl.GetProxyAvailable() ? KDeviceActivity_Idle : KDeviceActivity_Null); 345 346 if (!usbctl.isNull() && usbctl.GetEnabled()) 346 347 { … … 434 435 strFullData = QApplication::translate("VBoxConsoleWnd", "<br><nobr><b>No shared folders</b></nobr>", "Shared folders tooltip"); 435 436 437 setState(!sfs.isEmpty() ? KDeviceActivity_Idle : KDeviceActivity_Null); 436 438 setToolTip(strToolTip.arg(strFullData)); 437 439 } … … 472 474 bool fVRDPEnabled = vrdpsrv.GetEnabled(); 473 475 474 setState(fVRDPEnabled ? 1 : 0);476 setState(fVRDPEnabled ? KDeviceActivity_Idle : KDeviceActivity_Null); 475 477 476 478 QString tip = QApplication::translate("VBoxConsoleWnd", "Indicates whether the Remote Display (VRDP Server) " -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r28389 r28597 108 108 { 109 109 UIMachineWindow::sltMachineStateChanged(); 110 updateAppearanceOf(UIVisualElement_VirtualizationStuff); 110 111 } 111 112
Note:
See TracChangeset
for help on using the changeset viewer.