More update fixes for windows..

This commit is contained in:
Mark Watkins 2011-12-17 20:45:10 +10:00
parent 17c6d2ae37
commit e351b0e3e3
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ void UpdaterWindow::checkForUpdates()
}
mainwin->Notify("Checking for SleepyHead Updates");
update_url=QUrl("http://192.168.1.8/update.xml");
update_url=QUrl("http://sourceforge.net/projects/sleepyhead/files/AutoUpdate/update.xml/download");
downloadUpdateXML();
}

View File

@ -11,9 +11,9 @@ inline QString VersionString() { return QString().sprintf("%i.%i.%i",major_versi
#ifdef Q_WS_MAC
const QString PlatformString="Mac";
#elif Q_WS_WINDOWS
#elif defined(Q_WS_WIN32)
const QString PlatformString="Win32";
#else
#elif defined(Q_WS_X11)
const QString PlatformString="Linux";
#endif