Fix coding style

This commit is contained in:
Chocobo1 2020-12-09 15:14:00 +08:00 committed by sledgehammer999
parent 5a96e1fc7a
commit 487eb554c9
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
3 changed files with 17 additions and 19 deletions

View file

@ -76,18 +76,18 @@ void LogController::mainAction()
for (const Log::Msg &msg : asConst(logger->getMessages(lastKnownId)))
{
if (!((msg.type == Log::NORMAL && isNormal)
|| (msg.type == Log::INFO && isInfo)
|| (msg.type == Log::WARNING && isWarning)
|| (msg.type == Log::CRITICAL && isCritical)))
if (!(((msg.type == Log::NORMAL) && isNormal)
|| ((msg.type == Log::INFO) && isInfo)
|| ((msg.type == Log::WARNING) && isWarning)
|| ((msg.type == Log::CRITICAL) && isCritical)))
continue;
msgList.append(QJsonObject
{
{KEY_LOG_ID, msg.id},
{KEY_LOG_TIMESTAMP, msg.timestamp},
{KEY_LOG_MSG_TYPE, msg.type},
{KEY_LOG_MSG_MESSAGE, msg.message}
{QLatin1String(KEY_LOG_ID), msg.id},
{QLatin1String(KEY_LOG_TIMESTAMP), msg.timestamp},
{QLatin1String(KEY_LOG_MSG_TYPE), msg.type},
{QLatin1String(KEY_LOG_MSG_MESSAGE), msg.message}
});
}
@ -106,10 +106,8 @@ void LogController::mainAction()
// - last_known_id (int): exclude messages with id <= 'last_known_id' (default -1)
void LogController::peersAction()
{
int lastKnownId;
bool ok;
lastKnownId = params()["last_known_id"].toInt(&ok);
bool ok = false;
int lastKnownId = params()["last_known_id"].toInt(&ok);
if (!ok)
lastKnownId = -1;
@ -120,11 +118,11 @@ void LogController::peersAction()
{
peerList.append(QJsonObject
{
{KEY_LOG_ID, peer.id},
{KEY_LOG_TIMESTAMP, peer.timestamp},
{KEY_LOG_PEER_IP, peer.ip},
{KEY_LOG_PEER_BLOCKED, peer.blocked},
{KEY_LOG_PEER_REASON, peer.reason}
{QLatin1String(KEY_LOG_ID), peer.id},
{QLatin1String(KEY_LOG_TIMESTAMP), peer.timestamp},
{QLatin1String(KEY_LOG_PEER_IP), peer.ip},
{QLatin1String(KEY_LOG_PEER_BLOCKED), peer.blocked},
{QLatin1String(KEY_LOG_PEER_REASON), peer.reason}
});
}

View file

@ -30,7 +30,7 @@
#include "apicontroller.h"
class LogController : public APIController
class LogController final : public APIController
{
Q_OBJECT
Q_DISABLE_COPY(LogController)

View file

@ -30,7 +30,7 @@
#include "apicontroller.h"
class RSSController : public APIController
class RSSController final : public APIController
{
Q_OBJECT
Q_DISABLE_COPY(RSSController)