diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/function/VersionCheckThread.h (renamed from include/ui/help/VersionCheckThread.h) | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/include/ui/help/VersionCheckThread.h b/src/ui/function/VersionCheckThread.h index 7ee90077..181ee947 100644 --- a/include/ui/help/VersionCheckThread.h +++ b/src/ui/function/VersionCheckThread.h @@ -1,7 +1,7 @@ /** - * This file is part of GPGFrontend. + * This file is part of GpgFrontend. * - * GPGFrontend is free software: you can redistribute it and/or modify + * GpgFrontend is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. @@ -25,28 +25,28 @@ #ifndef GPGFRONTEND_VERSIONCHECKTHREAD_H #define GPGFRONTEND_VERSIONCHECKTHREAD_H -#include "GpgFrontend.h" +#include "ui/GpgFrontendUI.h" -class VersionCheckThread : public QThread { -Q_OBJECT - -public: - - VersionCheckThread(QNetworkReply *networkReply); +namespace GpgFrontend::UI { -signals: - - void upgradeVersion(const QString ¤tVersion, const QString &latestVersion); +class VersionCheckThread : public QThread { + Q_OBJECT -protected: + public: + explicit VersionCheckThread(QNetworkReply* networkReply); - void run() override; + signals: -private: + void upgradeVersion(const QString& currentVersion, + const QString& latestVersion); - QNetworkReply* mNetworkReply; + protected: + void run() override; + private: + QNetworkReply* mNetworkReply; }; +} // namespace GpgFrontend::UI -#endif //GPGFRONTEND_VERSIONCHECKTHREAD_H +#endif // GPGFRONTEND_VERSIONCHECKTHREAD_H |