Merge branch 'master' into tooomm-qt5

This commit is contained in:
tooomm 2026-05-30 14:49:55 +02:00 committed by GitHub
commit 9d4cf57c70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
593 changed files with 12518 additions and 6581 deletions

View file

@ -66,8 +66,9 @@ void AbstractClient::processProtocolItem(const ServerMessage &item)
const int cmdId = response.cmd_id();
PendingCommand *pend = pendingCommands.value(cmdId, 0);
if (!pend)
if (!pend) {
return;
}
pendingCommands.remove(cmdId);
pend->processResponse(response);

View file

@ -1,8 +1,8 @@
/**
* @file abstract_client.h
* @ingroup Client
* @brief TODO: Document this.
*/
//! \todo Document this file.
#ifndef ABSTRACTCLIENT_H
#define ABSTRACTCLIENT_H