macOS: Fix usage of qCDebug in .mm file
authorMarkus Goetz <markus@woboq.com>
Thu, 11 May 2017 10:18:58 +0000 (12:18 +0200)
committerJocelyn Turcotte <jturcotte@woboq.com>
Thu, 11 May 2017 15:22:59 +0000 (17:22 +0200)
src/gui/updater/sparkleupdater_mac.mm

index f90bdbbdc040c0f106e11093a6de73861dfe0b4d..96704e81faf2221074569d9e1c229ec3b13b2f71 100644 (file)
@@ -31,7 +31,7 @@
 // Only possible in later versions, we're not up to date here.
 - (BOOL)updaterMayCheckForUpdates:(SUUpdater *)bundle
 {
-    qCDebug(lcUpdater) << "may check: YES";
+    qCDebug(OCC::lcUpdater) << "may check: YES";
     return YES;
 }
 
@@ -128,7 +128,7 @@ void SparkleUpdater::checkForUpdate()
 
 void SparkleUpdater::backgroundCheckForUpdate()
 {
-    qCDebug(lcUpdater) << "launching background check";
+    qCDebug(OCC::lcUpdater) << "launching background check";
     if (autoUpdaterAllowed()) {
         [d->updater checkForUpdatesInBackground];
     }