| 210 | ////////////////////////////////////////////////////////////////////////// |
| 211 | |
| 212 | void IMEDispatcher::dispatchInsertText(const char* text, size_t len) |
| 213 | { |
| 214 | do |
| 215 | { |
| 216 | AX_BREAK_IF(!_impl || !text || len <= 0); |
| 217 | |
| 218 | // there is no delegate attached to IME |
| 219 | AX_BREAK_IF(!_impl->_delegateWithIme); |
| 220 | |
| 221 | _impl->_delegateWithIme->insertText(text, len); |
| 222 | } while (0); |
| 223 | } |
| 224 | |
| 225 | void IMEDispatcher::dispatchDeleteBackward(int numChars) |
| 226 | { |
no test coverage detected