GUI2/Grid: explicitly invoke base class in init list

This commit is contained in:
Charles Dang 2022-05-16 01:53:31 -04:00
parent 26e7ea9e38
commit 80eb1db092

View file

@ -38,7 +38,8 @@ namespace gui2
{
grid::grid(const unsigned rows, const unsigned cols)
: rows_(rows)
: widget()
, rows_(rows)
, cols_(cols)
, row_height_()
, col_width_()