From: Markus Goetz Date: Thu, 11 May 2017 10:18:58 +0000 (+0200) Subject: macOS: Fix usage of qCDebug in .mm file X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~731 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b68d98261960c3f27fba4ea53214263e3ea3e866;p=nextcloud-desktop.git macOS: Fix usage of qCDebug in .mm file --- diff --git a/src/gui/updater/sparkleupdater_mac.mm b/src/gui/updater/sparkleupdater_mac.mm index f90bdbbdc..96704e81f 100644 --- a/src/gui/updater/sparkleupdater_mac.mm +++ b/src/gui/updater/sparkleupdater_mac.mm @@ -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]; }