Fix implicit conversion

This commit is contained in:
Shatur95 2020-10-15 01:29:25 +03:00
parent fae8a8a65f
commit a8fb6b49f5

View File

@ -233,7 +233,7 @@ bool SingleApplicationPrivate::connectToPrimary( int timeout, ConnectionType con
socket->connectToServer( blockServerName );
if( socket->state() == QLocalSocket::ConnectingState ){
socket->waitForConnected( timeout - time.elapsed() );
socket->waitForConnected( static_cast<int>(timeout - time.elapsed()) );
}
// If connected break out of the loop
@ -269,7 +269,7 @@ bool SingleApplicationPrivate::connectToPrimary( int timeout, ConnectionType con
socket->write( header );
socket->write( initMsg );
bool result = socket->waitForBytesWritten( timeout - time.elapsed() );
bool result = socket->waitForBytesWritten( static_cast<int>(timeout - time.elapsed()) );
socket->flush();
return result;
}