mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Merge pull request #869 from ey6es/master
Need to #ifdef this out to avoid linking against nonexistent quazip on L...
This commit is contained in:
commit
15cf909fce
1 changed files with 2 additions and 0 deletions
|
@ -467,10 +467,12 @@ void Menu::exportSettings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Menu::checkForUpdates() {
|
void Menu::checkForUpdates() {
|
||||||
|
#if defined(Q_OS_MAC) && defined(QT_NO_DEBUG)
|
||||||
qDebug() << "Checking if there are available updates.\n";
|
qDebug() << "Checking if there are available updates.\n";
|
||||||
// if this is a release OS X build use fervor to check for an update
|
// if this is a release OS X build use fervor to check for an update
|
||||||
FvUpdater::sharedUpdater()->SetFeedURL("http://s3.highfidelity.io/appcast.xml");
|
FvUpdater::sharedUpdater()->SetFeedURL("http://s3.highfidelity.io/appcast.xml");
|
||||||
FvUpdater::sharedUpdater()->CheckForUpdatesSilent();
|
FvUpdater::sharedUpdater()->CheckForUpdatesSilent();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void Menu::loadAction(QSettings* set, QAction* action) {
|
void Menu::loadAction(QSettings* set, QAction* action) {
|
||||||
|
|
Loading…
Reference in a new issue