Changeset 41846 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 20, 2012 1:33:01 PM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.cpp
r41689 r41846 1163 1163 while (0); 1164 1164 } 1165 1166 #if 01167 void UISelectorWindow::sltEmbedDownloader(UIDownloadType downloaderType)1168 {1169 switch (downloaderType)1170 {1171 case UIDownloadType_UserManual:1172 {1173 if (UIDownloaderUserManual *pDl = UIDownloaderUserManual::current())1174 statusBar()->addWidget(pDl->progressWidget(this), 0);1175 break;1176 }1177 case UIDownloadType_ExtensionPack:1178 {1179 if (UIDownloaderExtensionPack *pDl = UIDownloaderExtensionPack::current())1180 statusBar()->addWidget(pDl->progressWidget(this), 0);1181 break;1182 }1183 default:1184 break;1185 }1186 }1187 #endif1188 1165 1189 1166 void UISelectorWindow::retranslateUi() … … 1590 1567 connect(&vboxGlobal(), SIGNAL(mediumEnumStarted()), this, SLOT(sltMediumEnumerationStarted())); 1591 1568 connect(&vboxGlobal(), SIGNAL(mediumEnumFinished(const VBoxMediaList &)), this, SLOT(sltMediumEnumFinished(const VBoxMediaList &))); 1592 1593 #if 01594 /* Network manager connections: */1595 connect(gNetworkManager, SIGNAL(sigDownloaderCreated(UIDownloadType)), this, SLOT(sltEmbedDownloader(UIDownloadType)));1596 #endif1597 1569 1598 1570 /* Menu-bar connections: */ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UISelectorWindow.h
r41615 r41846 127 127 void sltMediumEnumFinished(const VBoxMediaList &mediumList); 128 128 129 #if 0130 /* Downloading handler: */131 void sltEmbedDownloader(UIDownloadType downloaderType);132 #endif133 134 129 private: 135 130
Note:
See TracChangeset
for help on using the changeset viewer.