| 1572 | } |
| 1573 | |
| 1574 | void EditBox::setPasswordChar(Char _char) |
| 1575 | { |
| 1576 | mCharPassword = _char; |
| 1577 | if (mModePassword) |
| 1578 | { |
| 1579 | if (mClientText != nullptr) |
| 1580 | mClientText->setCaption(UString(mTextLength, (UString::code_point)mCharPassword)); |
| 1581 | } |
| 1582 | } |
| 1583 | |
| 1584 | void EditBox::updateEditState() |
| 1585 | { |
no test coverage detected