1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:08:12 +00:00

LibGUI: Fix missing initializer for GColumnsView::m_model_column

This commit is contained in:
Andreas Kling 2020-01-21 21:05:34 +01:00
parent a14f08fcc9
commit ecd5589d4f

View file

@ -62,5 +62,5 @@ private:
};
Vector<Column> m_columns;
int m_model_column;
int m_model_column { 0 };
};