Changeset 90627 in vbox
- Timestamp:
- Aug 11, 2021 12:56:28 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r90590 r90627 3415 3415 /* If downloader is running already: */ 3416 3416 else if (UINotificationDownloaderUserManual::exists()) 3417 { 3418 /// @todo show notification-center 3419 } 3417 gpNotificationCenter->invoke(); 3420 3418 /* Else propose to download user manual: */ 3421 3419 else if (cannotFindUserManual(strUserManualFileName1)) -
trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateManager.cpp
r90626 r90627 95 95 if (UINotificationNewVersionCheckerVirtualBox::exists()) 96 96 { 97 /// @todo show notification-center97 gpNotificationCenter->invoke(); 98 98 emit sigStepFinished(); 99 99 return; … … 135 135 if (UINotificationDownloaderExtensionPack::exists()) 136 136 { 137 gpNotificationCenter->invoke(); 137 138 emit sigStepFinished(); 138 139 return; … … 319 320 /* And we have a force-call: */ 320 321 if (fForcedCall) 321 { 322 /// @todo show notification-center 323 } 322 gpNotificationCenter->invoke(); 324 323 return; 325 324 } -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationCenter.cpp
r90600 r90627 166 166 void UINotificationCenter::invoke() 167 167 { 168 emit sigOpen(); 168 /* Open if center isn't opened yet: */ 169 if (!m_pOpenButton->isChecked()) 170 m_pOpenButton->animateClick(); 169 171 } 170 172 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r90568 r90627 2526 2526 /* If downloader is running already: */ 2527 2527 if (UINotificationDownloaderGuestAdditions::exists()) 2528 { 2529 /// @todo show notification-center 2530 } 2528 gpNotificationCenter->invoke(); 2531 2529 /* Else propose to download additions: */ 2532 2530 else if (msgCenter().cannotFindGuestAdditions())
Note:
See TracChangeset
for help on using the changeset viewer.