From a7b471cace80b2773a839276d79bfacefe085169 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sun, 8 Nov 2009 12:21:40 +0000 Subject: [PATCH] use "user" instead of "client" in window title --- src/llconclientdlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/llconclientdlg.cpp b/src/llconclientdlg.cpp index 61c3240f..0ca7987f 100755 --- a/src/llconclientdlg.cpp +++ b/src/llconclientdlg.cpp @@ -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 ) ); } } }