mirror of
https://github.com/OpenMW/openmw.git
synced 2025-12-12 17:13:07 +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)
|
: QFrame(parent)
|
||||||
{
|
{
|
||||||
setWindowFlags(Qt::Popup);
|
setWindowFlags(Qt::Popup);
|
||||||
setFrameStyle(QFrame::Box | QFrame::Plain);
|
setFrameStyle(QFrame::Box | static_cast<int>(QFrame::Plain));
|
||||||
hide();
|
hide();
|
||||||
|
|
||||||
mColorPicker = new QColorDialog(this);
|
mColorPicker = new QColorDialog(this);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue