Merge pull request #1394 from heejune/dev

Fix a build error when TDESKTOP_DISABLE_AUTOUPDATE preprocessor defined.
This commit is contained in:
telegramdesktop 2015-12-23 00:21:37 +03:00
commit b9bed419aa
2 changed files with 8 additions and 2 deletions

View File

@ -569,6 +569,8 @@ bool checkReadyUpdate() {
return true;
}
#endif
QString countBetaVersionSignature(uint64 version) { // duplicated in packer.cpp
if (cBetaPrivateKey().isEmpty()) {
LOG(("Error: Trying to count beta version signature without beta private key!"));
@ -613,4 +615,3 @@ QString countBetaVersionSignature(uint64 version) { // duplicated in packer.cpp
return QString::fromUtf8(signature.mid(19, 32));
}
#endif

View File

@ -66,6 +66,11 @@ private:
bool checkReadyUpdate();
QString countBetaVersionSignature(uint64 version);
#else
class UpdateDownloader : public QObject {
Q_OBJECT
};
#endif
QString countBetaVersionSignature(uint64 version);