| 82 | UString Label::getText() const { return text; } |
| 83 | |
| 84 | void Label::setText(const UString &Text) |
| 85 | { |
| 86 | if (text == Text) |
| 87 | return; |
| 88 | text = Text; |
| 89 | if (scroller) |
| 90 | { |
| 91 | scroller->setValue(0); |
| 92 | } |
| 93 | this->setDirty(); |
| 94 | } |
| 95 | |
| 96 | sp<BitmapFont> Label::getFont() const { return font; } |
| 97 |
no test coverage detected