macOS: Fix usage of qCDebug in .mm file

This commit is contained in:
Markus Goetz 2017-05-11 12:18:58 +02:00 коммит произвёл Jocelyn Turcotte
Родитель cf058bc537
Коммит b68d982619
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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];
}