mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-01 00:45:34 +00:00
static_cast bitwise operation between different enumeration types
This commit is contained in:
parent
6601274992
commit
32fd6f297a
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ CSVWidget::ColorPickerPopup::ColorPickerPopup(QWidget *parent)
|
|||
: QFrame(parent)
|
||||
{
|
||||
setWindowFlags(Qt::Popup);
|
||||
setFrameStyle(QFrame::Box | QFrame::Plain);
|
||||
setFrameStyle(QFrame::Box | static_cast<int>(QFrame::Plain));
|
||||
hide();
|
||||
|
||||
mColorPicker = new QColorDialog(this);
|
||||
|
|
Loading…
Reference in a new issue