VirtualBox

Changeset 94009 in vbox for trunk


Ignore:
Timestamp:
Mar 1, 2022 1:16:46 AM (3 years ago)
Author:
vboxsync
Message:

FE/Qt: qt6: QDateTime/QTime::toString -> QLocale::toString(QDateTime/QTime) (4.x), mapping Qt::LocalDate to QLocale::ShortFormat (4.x). bugref:9898

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualMachineItemLocal.cpp

    r94006 r94009  
    258258{
    259259    /* This is used in tool-tip generation: */
     260#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
     261    const QString strDateTime = m_lastStateChange.date() == QDate::currentDate()
     262                              ? QLocale::system().toString(m_lastStateChange.time(), QLocale::ShortFormat)
     263                              : QLocale::system().toString(m_lastStateChange, QLocale::ShortFormat);
     264#else
    260265    const QString strDateTime = (m_lastStateChange.date() == QDate::currentDate())
    261266                              ? m_lastStateChange.time().toString(Qt::LocalDate)
    262267                              : m_lastStateChange.toString(Qt::LocalDate);
     268#endif
    263269
    264270    /* If machine is accessible: */
  • trunk/src/VBox/Frontends/VirtualBox/src/networking/UIUpdateDefs.cpp

    r93982 r94009  
    1818/* Qt includes: */
    1919#include <QCoreApplication>
     20#include <QLocale>
    2021#include <QStringList>
    2122
     
    116117QString VBoxUpdateData::date() const
    117118{
    118     return isNoNeedToCheck() ? QCoreApplication::translate("UIUpdateManager", "Never") : m_date.toString(Qt::LocaleDate);
     119    return isNoNeedToCheck() ? QCoreApplication::translate("UIUpdateManager", "Never")
     120                             : QLocale::system().toString(m_date, QLocale::ShortFormat);
    119121}
    120122
  • trunk/src/VBox/Frontends/VirtualBox/src/snapshots/UISnapshotPane.cpp

    r94006 r94009  
    361361    if (then.daysTo(now) > 30)
    362362    {
    363         strAge = then.toString(Qt::LocalDate);
     363        strAge = QLocale::system().toString(then, QLocale::ShortFormat);
    364364        enmAgeFormat = SnapshotAgeFormat_Max;
    365365    }
     
    367367    {
    368368        strAge = tr("%1 (%2 ago)", "date time (how long ago)")
    369                     .arg(then.toString(Qt::LocalDate), UITranslator::daysToString(then.secsTo(now) / 60 / 60 / 24));
     369                    .arg(QLocale::system().toString(then, QLocale::ShortFormat),
     370                         UITranslator::daysToString(then.secsTo(now) / 60 / 60 / 24));
    370371        enmAgeFormat = SnapshotAgeFormat_InDays;
    371372    }
     
    373374    {
    374375        strAge = tr("%1 (%2 ago)", "date time (how long ago)")
    375                     .arg(then.toString(Qt::LocalDate), UITranslator::hoursToString(then.secsTo(now) / 60 / 60));
     376                    .arg(QLocale::system().toString(then, QLocale::ShortFormat),
     377                         UITranslator::hoursToString(then.secsTo(now) / 60 / 60));
    376378        enmAgeFormat = SnapshotAgeFormat_InHours;
    377379    }
     
    379381    {
    380382        strAge = tr("%1 (%2 ago)", "date time (how long ago)")
    381                     .arg(then.toString(Qt::LocalDate), UITranslator::minutesToString(then.secsTo(now) / 60));
     383                    .arg(QLocale::system().toString(then, QLocale::ShortFormat),
     384                         UITranslator::minutesToString(then.secsTo(now) / 60));
    382385        enmAgeFormat = SnapshotAgeFormat_InMinutes;
    383386    }
     
    385388    {
    386389        strAge = tr("%1 (%2 ago)", "date time (how long ago)")
    387                     .arg(then.toString(Qt::LocalDate), UITranslator::secondsToString(then.secsTo(now)));
     390                    .arg(QLocale::system().toString(then, QLocale::ShortFormat),
     391                         UITranslator::secondsToString(then.secsTo(now)));
    388392        enmAgeFormat = SnapshotAgeFormat_InSeconds;
    389393    }
     
    404408    /* Compose date time: */
    405409    QString strDateTime = fDateTimeToday
    406                         ? m_timestamp.time().toString(Qt::LocalDate)
    407                         : m_timestamp.toString(Qt::LocalDate);
     410                        ? QLocale::system().toString(m_timestamp.time(), QLocale::ShortFormat)
     411                        : QLocale::system().toString(m_timestamp, QLocale::ShortFormat);
    408412
    409413    /* Prepare details: */
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