Changeset 94644 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 20, 2022 9:15:47 AM (3 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageUpdateCheck.cpp
r94643 r94644 210 210 */ 211 211 if (enmChannel != enmChannelNil) 212 { 212 213 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Channel)(enmChannel), RTEXITCODE_FAILURE); 214 } 213 215 if (fEnabled != -1) 216 { 214 217 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(Enabled)((BOOL)fEnabled), RTEXITCODE_FAILURE); 218 } 215 219 if (cFrequencyDays) 220 { 216 221 CHECK_ERROR2I_RET(pUpdateAgent, COMSETTER(CheckFrequency)(cFrequencyDays * RT_SEC_1DAY), RTEXITCODE_FAILURE); 222 } 217 223 218 224 return RTEXITCODE_SUCCESS; -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.cpp
r94643 r94644 4359 4359 return; 4360 4360 4361 bool const fUpdateAvailable = m_comUpdateHost.GetState() == UpdateState_Available; /** @todo Handle other states. */4361 bool const fUpdateAvailable = m_comUpdateHost.GetState() == KUpdateState_Available; /** @todo Handle other states. */ 4362 4362 if (!m_comUpdateHost.isOk()) 4363 4363 return;
Note:
See TracChangeset
for help on using the changeset viewer.