Consistent use of 'beta' tag across the project (#3089)

This commit is contained in:
tooomm 2018-02-07 17:33:14 +01:00 committed by Zach H
parent a0d6a342d3
commit ab3989aeba
6 changed files with 43 additions and 43 deletions

View file

@ -12,7 +12,7 @@ class QNetworkAccessManager;
class Release
{
friend class StableReleaseChannel;
friend class DevReleaseChannel;
friend class BetaReleaseChannel;
public:
Release(){};
@ -129,12 +129,12 @@ protected slots:
virtual void fileListFinished();
};
class DevReleaseChannel : public ReleaseChannel
class BetaReleaseChannel : public ReleaseChannel
{
Q_OBJECT
public:
DevReleaseChannel(){};
~DevReleaseChannel(){};
BetaReleaseChannel(){};
~BetaReleaseChannel(){};
virtual QString getManualDownloadUrl() const;
virtual QString getName() const;