VirtualBox

Changeset 84029 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Apr 28, 2020 9:19:55 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
137600
Message:

FE/Qt: bugref:9653: Adjust UIProgressDialog title in case NULL one is provided.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIProgressDialog.cpp

    r82968 r84029  
    221221{
    222222    /* Setup dialog: */
    223     setWindowTitle(QString("%1: %2").arg(m_strTitle, m_comProgress.GetDescription()));
     223    if (m_strTitle.isNull())
     224        setWindowTitle(m_comProgress.GetDescription());
     225    else
     226        setWindowTitle(QString("%1: %2").arg(m_strTitle, m_comProgress.GetDescription()));
    224227    setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
    225228#ifdef VBOX_WS_MAC
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