use "user" instead of "client" in window title
This commit is contained in:
parent
6a78592cdd
commit
a7b471cace
1 changed files with 2 additions and 2 deletions
|
@ -466,12 +466,12 @@ void CLlconClientDlg::SetMyWindowTitle ( const int iNumClients )
|
|||
{
|
||||
if ( iNumClients == 1 )
|
||||
{
|
||||
setWindowTitle ( QString ( APP_NAME ) + " (1 client)" );
|
||||
setWindowTitle ( QString ( APP_NAME ) + " (1 user)" );
|
||||
}
|
||||
else
|
||||
{
|
||||
setWindowTitle ( QString ( APP_NAME ) +
|
||||
QString ( " (%1 clients)" ).arg ( iNumClients ) );
|
||||
QString ( " (%1 users)" ).arg ( iNumClients ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue