Changeset 94715 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 27, 2022 7:46:18 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r94705 r94715 56 56 #include "CRangedIntegerFormValue.h" 57 57 #include "CStringFormValue.h" 58 #ifdef VBOX_WITH_UPDATE_AGENT 59 # include "CSystemProperties.h" 60 #endif 58 61 #include "CUnattended.h" 59 62 #include "CVRDEServer.h" … … 4320 4323 CHost comHost = uiCommon().host(); 4321 4324 if (!comHost.isNull()) 4325 { 4322 4326 m_comUpdateHost = comHost.GetUpdateHost(); 4327 4328 /** @todo For now just grab the proxy settings from the system properties object. 4329 * We might want to differentiate this later. */ 4330 const CSystemProperties comProperties = uiCommon().virtualBox().GetSystemProperties(); 4331 m_comUpdateHost.SetProxyMode(comProperties.GetProxyMode()); 4332 m_comUpdateHost.SetProxyURL(comProperties.GetProxyURL()); 4333 } 4323 4334 #endif /* VBOX_WITH_UPDATE_AGENT */ 4324 4335 }
Note:
See TracChangeset
for help on using the changeset viewer.