[FS9] Minor style fixes

This commit is contained in:
Klaus Basan
2019-11-19 19:58:32 +01:00
committed by Mat Sutcliffe
parent 34f9fb89d6
commit 22d8b52fe8
2 changed files with 4 additions and 5 deletions

View File

@@ -190,7 +190,7 @@ namespace BlackSimPlugin
void CFs9Client::timerEvent(QTimerEvent *event)
{
Q_UNUSED(event);
Q_UNUSED(event)
sendMultiplayerPosition();
sendMultiplayerParamaters();
@@ -199,10 +199,9 @@ namespace BlackSimPlugin
HRESULT CFs9Client::enumDirectPlayHosts()
{
HRESULT hr = s_ok();
if (isFailure(hr = createHostAddress()))
{
qWarning() << "isFailure to create host address!";
CLogMessage(this).warning(u"FS9Client isFailure to create host address!");
return hr;
}