From 106f1d5f92bd0d1f0df1c4ca09410f0e1e435e8d Mon Sep 17 00:00:00 2001 From: Martchus Date: Thu, 15 Feb 2024 22:06:00 +0100 Subject: [PATCH] Fix clazy warning about mismarked slots --- syncthingconnector/syncthingconnection.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/syncthingconnector/syncthingconnection.h b/syncthingconnector/syncthingconnection.h index 560249b..337e845 100644 --- a/syncthingconnector/syncthingconnection.h +++ b/syncthingconnector/syncthingconnection.h @@ -350,9 +350,6 @@ private Q_SLOTS: void handleRedirection(const QUrl &url); void handleMeteredConnection(); void recalculateStatus(); - QString configPath() const; - QByteArray changeConfigVerb() const; - QString folderErrorsPath() const; private: // internal helper methods @@ -374,6 +371,9 @@ private: SyncthingDev *addDevInfo(std::vector &devs, const QString &devId); CppUtilities::DateTime parseTimeStamp(const QJsonValue &jsonValue, const QString &context, CppUtilities::DateTime defaultValue = CppUtilities::DateTime(), bool greaterThanEpoch = false); + QString configPath() const; + QByteArray changeConfigVerb() const; + QString folderErrorsPath() const; QString m_syncthingUrl; QByteArray m_apiKey;