| 190 | } |
| 191 | |
| 192 | bool WinFont::isValidChar(const UTF16 ch) const |
| 193 | { |
| 194 | return ch != 0 /* && (ch >= mTextMetric.tmFirstChar && ch <= mTextMetric.tmLastChar)*/; |
| 195 | } |
| 196 | |
| 197 | bool WinFont::isValidChar(const UTF8 *str) const |
| 198 | { |
nothing calls this directly
no test coverage detected