From e351b0e3e36033c55fd054f76b7e9f0ff7daeb0a Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 17 Dec 2011 20:45:10 +1000 Subject: [PATCH] More update fixes for windows.. --- UpdaterWindow.cpp | 2 +- version.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UpdaterWindow.cpp b/UpdaterWindow.cpp index c3d68afd..53a08823 100644 --- a/UpdaterWindow.cpp +++ b/UpdaterWindow.cpp @@ -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(); } diff --git a/version.h b/version.h index f59c5dd4..d5a66cf4 100644 --- a/version.h +++ b/version.h @@ -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