| 732 | } |
| 733 | |
| 734 | void TabServer::SetDeviceRandomPwdVisibility() { |
| 735 | if (settings_->IsDisplayRandomPwd() && !settings_->GetDeviceRandomPwd().empty()) { |
| 736 | lbl_machine_random_pwd_->setText(settings_->GetDeviceRandomPwd().c_str()); |
| 737 | btn_hide_random_pwd_->ToImage1(); |
| 738 | } |
| 739 | else { |
| 740 | lbl_machine_random_pwd_->setText("********"); |
| 741 | btn_hide_random_pwd_->ToImage2(); |
| 742 | } |
| 743 | } |
| 744 | |
| 745 | void TabServer::UpdateServerState() { |
| 746 | bool spvr_client_alive = grApp->IsSpvrClientAlive(); |
nothing calls this directly
no test coverage detected