fixed bug showing time shift warning multiple times. Removed the time estimate from the message

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6243 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2013-03-19 19:37:26 +00:00
parent 7f53f0e0cc
commit bffef991d8

View File

@ -465,10 +465,11 @@ void NotifyQt::handleChatLobbyTimeShift(int shift)
if(!already)
{
QString string = tr("For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of ")+QString::number(shift)+tr(" seconds with your friends was detected). ") ;
already = true ;
QString string = tr("For the chat lobbies to work properly, the time of your computer needs to be correct. Please check that this is the case (A possible time shift of several minutes was detected with your friends). ") ;
QMessageBox::warning(NULL,tr("Please check your system clock."),string) ;
already = true ;
}
}