| 170 | } |
| 171 | |
| 172 | void ComputeInstallBetaVersions() { |
| 173 | const auto installBetaSettingPath = InstallBetaVersionsSettingPath(); |
| 174 | if (cAlphaVersion()) { |
| 175 | cSetInstallBetaVersion(false); |
| 176 | } else if (QFile::exists(installBetaSettingPath)) { |
| 177 | QFile f(installBetaSettingPath); |
| 178 | if (f.open(QIODevice::ReadOnly)) { |
| 179 | cSetInstallBetaVersion(f.read(1) != "0"); |
| 180 | } |
| 181 | } else if (AppBetaVersion) { |
| 182 | WriteInstallBetaVersionsSetting(); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | void ComputeInstallationTag() { |
| 187 | InstallationTag = 0; |
no test coverage detected