VirtualBox

Ignore:
Timestamp:
Sep 8, 2016 1:28:37 PM (8 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:6604: UIMessageCenter: UIUpdateManager: Small style fixes.

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  
    22532253{
    22542254    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>")
    22562256                             .arg(strTo),
    22572257                          0 /* auto-confirm id */,
     
    22622262{
    22632263    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>")
    22652265                             .arg(strFiles.join(",")),
    22662266                          0 /* auto-confirm id */,
  • trunk/src/VBox/Frontends/VirtualBox/src/net/UIUpdateManager.cpp

    r63762 r63765  
    424424            QFile::remove(QDir::toNativeSeparators(strTarget));
    425425            /* Get the list of old extension pack files in VirtualBox homefolder: */
    426             const QStringList strOldExtPackFiles = QDir(vboxGlobal().homeFolder()).entryList(QStringList("*.vbox-extpack"),
    427                                                                                              QDir::Files);
     426            const QStringList oldExtPackFiles = QDir(vboxGlobal().homeFolder()).entryList(QStringList("*.vbox-extpack"),
     427                                                                                          QDir::Files);
    428428            /* Propose to delete old extension pack files if there are any: */
    429             if (strOldExtPackFiles.count())
     429            if (oldExtPackFiles.size())
    430430            {
    431                 if (msgCenter().proposeDeleteOldExtentionPacks(strOldExtPackFiles))
     431                if (msgCenter().proposeDeleteOldExtentionPacks(oldExtPackFiles))
    432432                {
    433                     foreach (const QString strExtPackFile, strOldExtPackFiles)
     433                    foreach (const QString &strExtPackFile, oldExtPackFiles)
    434434                    {
    435435                        /* Delete the old extension pack file: */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette