diff --git a/src/libs/vpropertyexplorer/plugins/vlinecolorproperty.cpp b/src/libs/vpropertyexplorer/plugins/vlinecolorproperty.cpp index ed8b0a900..4e771bf26 100644 --- a/src/libs/vpropertyexplorer/plugins/vlinecolorproperty.cpp +++ b/src/libs/vpropertyexplorer/plugins/vlinecolorproperty.cpp @@ -92,7 +92,7 @@ auto VPE::VLineColorProperty::createEditor(QWidget *parent, const QStyleOptionVi auto *tmpEditor = new QComboBox(parent); tmpEditor->setPalette(parent->palette()); - int const size = tmpEditor->iconSize().height(); + int size = tmpEditor->iconSize().height(); // NOLINT(misc-const-correctness) // On Mac pixmap should be little bit smaller. #if defined(Q_OS_MAC) size -= 2; // Two pixels should be enough.