Add an item to the end of a list
| 76 | |
| 77 | //! Add an item to the end of a list |
| 78 | void addItem(BasePanelViewItem* _item) |
| 79 | { |
| 80 | insertItem(MyGUI::ITEM_NONE, _item); |
| 81 | } |
| 82 | |
| 83 | //! Get item from specified position |
| 84 | BasePanelViewItem* getItem(size_t _index) |