| 182 | } |
| 183 | |
| 184 | void UserPanel::SetAnonymousState() |
| 185 | { |
| 186 | mUserName->SetLabel(anonymousText.Translation()); |
| 187 | mUserImage->SetBitmap(theTheme.Bitmap(bmpAnonymousUser)); |
| 188 | mUserImage->SetLabel(anonymousText); // for screen readers |
| 189 | mLinkButton->SetLabel(XXO("Sign in").Translation()); |
| 190 | mLinkButton->Show(mLinkButtonVisible); |
| 191 | |
| 192 | OnStateChanged(false); |
| 193 | } |
| 194 | |
| 195 | } // namespace audacity::cloud::audiocom |
nothing calls this directly
no test coverage detected