VirtualBox

Changeset 76674 in vbox for trunk


Ignore:
Timestamp:
Jan 7, 2019 12:36:52 PM (6 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9080: Build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/medium/viso/UIVisoCreatorDefs.h

    r76671 r76674  
    2525struct VisoOptions
    2626{
    27     QString m_strVisoName = "ad-hoc-viso";
     27    VisoOptions()
     28        :m_strVisoName("ad-hoc-viso"){}
    2829    bool operator==(const VisoOptions &otherOptions) const
    2930    {
    3031        return m_strVisoName == otherOptions.m_strVisoName;
    3132    }
     33
     34    QString m_strVisoName;
    3235};
    3336
    3437struct BrowserOptions
    3538{
    36     bool m_bShowHiddenObjects = true;
     39    BrowserOptions()
     40        :m_bShowHiddenObjects(true){}
    3741    bool operator==(const BrowserOptions &otherOptions) const
    3842    {
    3943        return m_bShowHiddenObjects == otherOptions.m_bShowHiddenObjects;
    4044    }
     45    bool m_bShowHiddenObjects = true;
    4146};
    4247
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