Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-01-30 15:16:09 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-01-30 15:16:09 +0400
commit2f81999d6cfdd6e9af5ef0fc0e18ec0973e85072 (patch)
treef23a3c586cf6cb5d84fbb2bc6b7858487c2b23a4 /src/updater
parent225123951de9eb8b1d89657db398bf86fa3d4a34 (diff)
Fix OS X build
Diffstat (limited to 'src/updater')
-rw-r--r--src/updater/updater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/updater/updater.cpp b/src/updater/updater.cpp
index 292f91b91..1c4b9365d 100644
--- a/src/updater/updater.cpp
+++ b/src/updater/updater.cpp
@@ -35,7 +35,7 @@ Updater *Updater::create()
{
QString updateBaseUrl(QLatin1String(APPLICATION_UPDATE_URL));
#ifdef Q_OS_MAC
- return new SparkleUpdater(updateBaseUrl+QLatin1String("/rss/");
+ return new SparkleUpdater(updateBaseUrl+QLatin1String("/rss/"));
#elif defined (Q_OS_WIN32)
// the best we can do is notify about updates
return new NSISUpdater(QUrl(updateBaseUrl));