| 382 | } |
| 383 | |
| 384 | int JUTResFont::getCellHeight() const |
| 385 | { |
| 386 | ResFONT::GlyphBlock *glyph; |
| 387 | ResFONT::GlyphBlock **glyphs; |
| 388 | |
| 389 | glyphs = mGlyphBlocks; |
| 390 | if (glyphs) |
| 391 | { |
| 392 | glyph = *glyphs; |
| 393 | if (glyph) |
| 394 | { |
| 395 | return glyph->mCellHeight; |
| 396 | } |
| 397 | } |
| 398 | return getHeight(); |
| 399 | } |
| 400 | |
| 401 | bool JUTResFont::isLeadByte(int chr) const { return (*mIsLeadByte)(chr); } |
| 402 |
no outgoing calls
no test coverage detected