Changeset 94044 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Mar 1, 2022 2:56:01 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIGuestOSTypeSelectionButton.cpp
r93115 r94044 42 42 m_pSignalMapper = new QSignalMapper(this); 43 43 if (m_pSignalMapper) 44 #if QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) 45 connect(m_pSignalMapper, static_cast<void(QSignalMapper::*)(const QString &)>(&QSignalMapper::mappedString), 46 this, &UIGuestOSTypeSelectionButton::setOSTypeId); 47 #else 44 48 connect(m_pSignalMapper, static_cast<void(QSignalMapper::*)(const QString &)>(&QSignalMapper::mapped), 45 49 this, &UIGuestOSTypeSelectionButton::setOSTypeId); 50 #endif 46 51 47 52 /* Create main menu: */
Note:
See TracChangeset
for help on using the changeset viewer.