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:
@@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user