Don't show the update messages in the mobile app

Android provides update notifications already.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-07-10 13:28:28 -07:00
parent c2e1158cf7
commit d8ca046265

View file

@ -123,6 +123,7 @@ void UpdateManager::requestReceived()
msgbox.setIcon(QMessageBox::Warning);
}
}
#ifndef SUBSURFACE_MOBILE
if (haveNewVersion || !isAutomaticCheck) {
msgbox.setWindowTitle(msgTitle);
msgbox.setWindowIcon(QIcon(":/subsurface-icon"));
@ -150,4 +151,5 @@ void UpdateManager::requestReceived()
settings.setValue("DontCheckForUpdates", "TRUE");
}
}
#endif
}