MCPcopy Create free account
hub / github.com/MyGUI/mygui / removeAllItems

Method removeAllItems

Common/PanelView/BasePanelView.h:123–133  ·  view source on GitHub ↗

Remove all items

Source from the content-addressed store, hash-verified

121
122 //! Remove all items
123 void removeAllItems()
124 {
125 for (auto& item : mItems)
126 {
127 BasePanelViewCell* cell = item->getPanelCell();
128 item->_shutdown();
129 delete cell;
130 }
131 mItems.clear();
132 setNeedUpdate();
133 }
134
135 void updateView()
136 {

Callers

nothing calls this directly

Calls 3

getPanelCellMethod · 0.80
_shutdownMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected