We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9682e8 commit 3a7381dCopy full SHA for 3a7381d
Fireworks/TableWidget/src/FWTableWidget.cc
@@ -26,8 +26,10 @@
26
//
27
// constants, enums and typedefs
28
29
-static const UInt_t kRowOptions = kLHintsExpandX | kLHintsFillX | kLHintsShrinkX;
30
-static const UInt_t kColOptions = kLHintsExpandY | kLHintsFillY | kLHintsShrinkY;
+static const UInt_t kRowOptions =
+ static_cast<UInt_t>(kLHintsExpandX) | static_cast<UInt_t>(kLHintsFillX) | static_cast<UInt_t>(kLHintsShrinkX);
31
+static const UInt_t kColOptions =
32
+ static_cast<UInt_t>(kLHintsExpandY) | static_cast<UInt_t>(kLHintsFillY) | static_cast<UInt_t>(kLHintsShrinkY);
33
34
35
// static data member definitions
0 commit comments