| 109 | } |
| 110 | |
| 111 | void PropertyInt2ListControl::notifyClickDelete(MyGUI::Widget* _sender) |
| 112 | { |
| 113 | size_t index = mList->getIndexSelected(); |
| 114 | if (index != MyGUI::ITEM_NONE) |
| 115 | { |
| 116 | mList->removeItemAt(index); |
| 117 | executeAction(getValue()); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | void PropertyInt2ListControl::notifyEndDialog(Dialog* _sender, bool _result) |
| 122 | { |
nothing calls this directly
no test coverage detected