- Timestamp:
- Mar 21, 2023 4:11:28 PM (19 months ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 3 edited
-
UIMachineDefs.h (modified) (1 diff)
-
UIMachineWindow.cpp (modified) (1 diff)
-
normal/UIMachineWindowNormal.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineDefs.h
r99097 r99098 46 46 enum UIVisualElement 47 47 { 48 UIVisualElement_WindowTitle = RT_BIT(0), 49 UIVisualElement_MouseIntegrationStuff = RT_BIT(1), 50 UIVisualElement_IndicatorPoolStuff = RT_BIT(2), 48 UIVisualElement_WindowTitle = RT_BIT(0), 49 UIVisualElement_IndicatorPool = RT_BIT(1), 51 50 #ifndef VBOX_WS_MAC 52 UIVisualElement_MiniToolBar = RT_BIT(13),51 UIVisualElement_MiniToolBar = RT_BIT(2), 53 52 #endif 54 UIVisualElement_AllStuff = 0xFFFF53 UIVisualElement_AllStuff = 0xFFFF 55 54 }; 56 55 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r99012 r99098 340 340 341 341 /* Update appearance for indicator-pool: */ 342 updateAppearanceOf(UIVisualElement_IndicatorPool Stuff);342 updateAppearanceOf(UIVisualElement_IndicatorPool); 343 343 } 344 344 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp
r99097 r99098 80 80 81 81 /* Update indicator-pool and virtualization stuff: */ 82 updateAppearanceOf(UIVisualElement_IndicatorPool Stuff);82 updateAppearanceOf(UIVisualElement_IndicatorPool); 83 83 } 84 84 … … 611 611 /* Set status-bar indicator-pool auto update timer: */ 612 612 if ( m_pIndicatorsPool 613 && iElement & UIVisualElement_IndicatorPool Stuff)613 && iElement & UIVisualElement_IndicatorPool) 614 614 m_pIndicatorsPool->setAutoUpdateIndicatorStates(statusBar()->isVisible() && uimachine()->isRunning()); 615 615 }
Note:
See TracChangeset
for help on using the changeset viewer.

