Changeset 63765 in vbox for trunk/src/VBox
- Timestamp:
- Sep 8, 2016 1:28:37 PM (8 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIMessageCenter.cpp
r63762 r63765 2253 2253 { 2254 2254 return questionBinary(windowManager().networkManagerOrMainWindowShown(), MessageType_Question, 2255 tr("Do you want to delete the downloaded file <nobr><b>%1</b>.</nobr> </p>")2255 tr("Do you want to delete the downloaded file <nobr><b>%1</b>.</nobr>") 2256 2256 .arg(strTo), 2257 2257 0 /* auto-confirm id */, … … 2262 2262 { 2263 2263 return questionBinary(windowManager().networkManagerOrMainWindowShown(), MessageType_Question, 2264 tr("Do you want to delete following list of files. <nobr><b>%1</b>.</nobr> </p>")2264 tr("Do you want to delete following list of files. <nobr><b>%1</b>.</nobr>") 2265 2265 .arg(strFiles.join(",")), 2266 2266 0 /* auto-confirm id */, -
trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp
r63762 r63765 424 424 QFile::remove(QDir::toNativeSeparators(strTarget)); 425 425 /* Get the list of old extension pack files in VirtualBox homefolder: */ 426 const QStringList strOldExtPackFiles = QDir(vboxGlobal().homeFolder()).entryList(QStringList("*.vbox-extpack"),427 426 const QStringList oldExtPackFiles = QDir(vboxGlobal().homeFolder()).entryList(QStringList("*.vbox-extpack"), 427 QDir::Files); 428 428 /* Propose to delete old extension pack files if there are any: */ 429 if ( strOldExtPackFiles.count())429 if (oldExtPackFiles.size()) 430 430 { 431 if (msgCenter().proposeDeleteOldExtentionPacks( strOldExtPackFiles))431 if (msgCenter().proposeDeleteOldExtentionPacks(oldExtPackFiles)) 432 432 { 433 foreach (const QString strExtPackFile, strOldExtPackFiles)433 foreach (const QString &strExtPackFile, oldExtPackFiles) 434 434 { 435 435 /* Delete the old extension pack file: */
Note:
See TracChangeset
for help on using the changeset viewer.