From b68d98261960c3f27fba4ea53214263e3ea3e866 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Thu, 11 May 2017 12:18:58 +0200 Subject: [PATCH] macOS: Fix usage of qCDebug in .mm file --- src/gui/updater/sparkleupdater_mac.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; } -- 2.30.2