Changeset 90605 in vbox
- Timestamp:
- Aug 10, 2021 3:43:06 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/notificationcenter/UINotificationObjects.h
r90590 r90605 1142 1142 static bool exists(); 1143 1143 1144 /** Destructs extension pack downloading notification- progress.1144 /** Destructs extension pack downloading notification-downloader. 1145 1145 * @note Notification-center can destroy us at any time. */ 1146 1146 virtual ~UINotificationDownloaderExtensionPack() /* override final */; … … 1148 1148 protected: 1149 1149 1150 /** Constructs extension pack downloading notification- progress.1150 /** Constructs extension pack downloading notification-downloader. 1151 1151 * @param strPackName Brings the package name. */ 1152 1152 UINotificationDownloaderExtensionPack(const QString &strPackName); … … 1156 1156 /** Returns object details. */ 1157 1157 virtual QString details() const /* override final */; 1158 /** Creates and returns started progress-wrapper. */1158 /** Creates and returns started downloader. */ 1159 1159 virtual UIDownloader *createDownloader() /* override final */; 1160 1160 … … 1187 1187 static bool exists(); 1188 1188 1189 /** Destructs guest additions downloading notification- progress.1189 /** Destructs guest additions downloading notification-downloader. 1190 1190 * @note Notification-center can destroy us at any time. */ 1191 1191 virtual ~UINotificationDownloaderGuestAdditions() /* override final */; … … 1193 1193 protected: 1194 1194 1195 /** Constructs guest additions downloading notification- progress.1195 /** Constructs guest additions downloading notification-downloader. 1196 1196 * @param strFileName Brings the file name. */ 1197 1197 UINotificationDownloaderGuestAdditions(const QString &strFileName); … … 1201 1201 /** Returns object details. */ 1202 1202 virtual QString details() const /* override final */; 1203 /** Creates and returns started progress-wrapper. */1203 /** Creates and returns started downloader. */ 1204 1204 virtual UIDownloader *createDownloader() /* override final */; 1205 1205 … … 1232 1232 static bool exists(); 1233 1233 1234 /** Destructs user manual downloading notification- progress.1234 /** Destructs user manual downloading notification-downloader. 1235 1235 * @note Notification-center can destroy us at any time. */ 1236 1236 virtual ~UINotificationDownloaderUserManual() /* override final */; … … 1238 1238 protected: 1239 1239 1240 /** Constructs user manual downloading notification- progress.1240 /** Constructs user manual downloading notification-downloader. 1241 1241 * @param strFileName Brings the file name. */ 1242 1242 UINotificationDownloaderUserManual(const QString &strFileName); … … 1246 1246 /** Returns object details. */ 1247 1247 virtual QString details() const /* override final */; 1248 /** Creates and returns started progress-wrapper. */1248 /** Creates and returns started downloader. */ 1249 1249 virtual UIDownloader *createDownloader() /* override final */; 1250 1250
Note:
See TracChangeset
for help on using the changeset viewer.