| 223 | } |
| 224 | |
| 225 | void IMEDispatcher::dispatchDeleteBackward(int numChars) |
| 226 | { |
| 227 | do |
| 228 | { |
| 229 | AX_BREAK_IF(!_impl); |
| 230 | |
| 231 | // there is no delegate attached to IME |
| 232 | AX_BREAK_IF(!_impl->_delegateWithIme); |
| 233 | |
| 234 | _impl->_delegateWithIme->deleteBackward(numChars); |
| 235 | } while (0); |
| 236 | } |
| 237 | |
| 238 | void IMEDispatcher::dispatchControlKey(EventKeyboard::KeyCode keyCode) |
| 239 | { |
no test coverage detected