Changeset 90601 in vbox
- Timestamp:
- Aug 10, 2021 3:16:28 PM (3 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjectItem.cpp
r90591 r90601 385 385 return new UINotificationProgressItem(pParent, static_cast<UINotificationProgress*>(pObject)); 386 386 #ifdef VBOX_GUI_WITH_NETWORK_MANAGER 387 if (pObject->inherits("UINotificationDownloader"))387 else if (pObject->inherits("UINotificationDownloader")) 388 388 return new UINotificationDownloaderItem(pParent, static_cast<UINotificationDownloader*>(pObject)); 389 389 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjectItem.h
r90590 r90601 88 88 UINotificationProgressItem(QWidget *pParent, UINotificationProgress *pProgress = 0); 89 89 90 protected:91 92 /** Holds the progress-bar instance. */93 QProgressBar *m_pProgressBar;94 95 90 private slots: 96 91 … … 110 105 /** Updates details. */ 111 106 void updateDetails(); 107 108 /** Holds the progress-bar instance. */ 109 QProgressBar *m_pProgressBar; 112 110 }; 113 111 … … 123 121 * @param pDownloader Brings the notification-downloader this item created for. */ 124 122 UINotificationDownloaderItem(QWidget *pParent, UINotificationDownloader *pDownloader = 0); 125 126 protected:127 128 /** Holds the progress-bar instance. */129 QProgressBar *m_pProgressBar;130 123 131 124 private slots: … … 146 139 /** Updates details. */ 147 140 void updateDetails(); 141 142 /** Holds the progress-bar instance. */ 143 QProgressBar *m_pProgressBar; 148 144 }; 149 145 #endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
Note:
See TracChangeset
for help on using the changeset viewer.