| 257 | { |
| 258 | public: |
| 259 | OptionComboBox(qint32 defaultVal, const QString& saveName, qint32* pVarNum, |
| 260 | QWidget* pParent): |
| 261 | QComboBox(pParent), |
| 262 | OptionItemBase(saveName) |
| 263 | { |
| 264 | setMinimumWidth(50); |
| 265 | m_pVarNum = pVarNum; |
| 266 | m_pVarStr = nullptr; |
| 267 | m_defaultVal = defaultVal; |
| 268 | setEditable(false); |
| 269 | } |
| 270 | |
| 271 | OptionComboBox(qint32 defaultVal, const QString& saveName, QString* pVarStr, |
| 272 | QWidget* pParent): |
nothing calls this directly
no outgoing calls
no test coverage detected