| 249 | } |
| 250 | |
| 251 | void FlashControl::unbind(const MyGUI::UString& funcName) |
| 252 | { |
| 253 | DelegateIter i = delegateMap.find(funcName); |
| 254 | if (i != delegateMap.end()) |
| 255 | delegateMap.erase(i); |
| 256 | } |
| 257 | |
| 258 | FlashValue FlashControl::callFunction(MyGUI::UString funcName, const Arguments& args) |
| 259 | { |