| 327 | } |
| 328 | |
| 329 | void DialogConnect::loadProjects() |
| 330 | { |
| 331 | cardWidget->clear(); |
| 332 | listProjects = GlobalClient->storage->ListProjects(); |
| 333 | for (auto& profile : listProjects) { |
| 334 | QString subtitle = profile.GetUsername() + " @ " + profile.GetHost(); |
| 335 | cardWidget->addCard(profile.GetProject(), subtitle); |
| 336 | } |
| 337 | } |
| 338 | |
| 339 | AuthProfile* DialogConnect::StartDialog() |
| 340 | { |
nothing calls this directly
no test coverage detected