| 2318 | #endif |
| 2319 | |
| 2320 | wxString CUpDownClient::GetClientShortInfo() |
| 2321 | { |
| 2322 | if (m_clientVerString.IsEmpty()) { |
| 2323 | ReGetClientSoft(); |
| 2324 | } |
| 2325 | |
| 2326 | return CFormat( "'%s' (%s %s %s)" ) |
| 2327 | % ( m_Username.IsEmpty() ? wxString(_("Unknown")) : m_Username ) |
| 2328 | % m_clientSoftString |
| 2329 | % m_clientVerString |
| 2330 | % m_strModVersion; |
| 2331 | } |
| 2332 | |
| 2333 | |
| 2334 | void CUpDownClient::SendPublicIPRequest() |
no test coverage detected