Use C++11 enum class
This commit is contained in:
@@ -70,7 +70,12 @@ class MoodbarProxyStyle : public QProxyStyle {
|
||||
static const int kArrowWidth;
|
||||
static const int kArrowHeight;
|
||||
|
||||
enum State { MoodbarOn, MoodbarOff, FadingToOn, FadingToOff };
|
||||
enum class State {
|
||||
MoodbarOn,
|
||||
MoodbarOff,
|
||||
FadingToOn,
|
||||
FadingToOff
|
||||
};
|
||||
|
||||
private:
|
||||
void NextState();
|
||||
|
||||
Reference in New Issue
Block a user