Fix boolean variables being accessed before initialization

As detected by ASAN:
ClassicIndicators.cpp:66:12: runtime error: load of value 190, which is not a valid value for type 'bool'
This commit is contained in:
Sergio Martins
2021-05-21 09:24:27 +01:00
parent 2a8732fdcd
commit ae58a8b9df

View File

@@ -54,11 +54,11 @@ private:
void setDropLocation(DropLocation);
void updateWindowPosition();
QWidgetOrQuick *const m_rubberBand;
IndicatorWindow *const m_indicatorWindow;
bool m_innerIndicatorsVisible = false;
bool m_outterIndicatorsVisible = false;
bool m_tabIndicatorVisible = false;
QWidgetOrQuick *const m_rubberBand;
IndicatorWindow *const m_indicatorWindow;
};
}