I have several widgets, like
QLineEdit m_namePoiFilter;
QLineEdit m_ID_MSSIPoiFilter;
I would like to add them to a list of qwidgets, then set all of them visible.
I have made
QList<QWidget> m_PoiFilterWidgets;
but I can not add an item to it like
m_PoiFilterWidgets.push_back(m_namePoiFilter);
You need to hold these via a pointer, and you should use a lower-overhead container like
std::array
. E.g.:This code is safe from dangling pointers by construction:
m_edits
will be constructed after the widgets are constructed, and will be destroyed before the widgets are destroyed: thus its contents are always valid.I'd avoid
QList
/QVector
as these allocate on the heap - unnecessarily in your case.