diff src/hgrunner.cpp @ 674:4283398d248f

Minor improvement to dialog spacing
author Chris Cannam
date Wed, 05 Dec 2018 13:21:09 +0000
parents 98a7fbbe9d88
children 5b3bcb2d0943
line wrap: on
line diff
--- a/src/hgrunner.cpp	Wed Dec 05 13:20:51 2018 +0000
+++ b/src/hgrunner.cpp	Wed Dec 05 13:21:09 2018 +0000
@@ -484,7 +484,7 @@
 
         QByteArray fileExt = randomKey();
         if (fileExt == QByteArray()) {
-            DEBUG << "HgRunner::addExtensionOptions: Failed to get proper auth file ext" << endl;
+            DEBUG << "HgRunner::getAuthFilePath: Failed to get proper auth file ext" << endl;
             return "";
         }
         QString fileExt16 = QString::fromLocal8Bit(fileExt.toBase64()).left(16)
@@ -493,7 +493,7 @@
             (QStandardPaths::CacheLocation);
         QDir().mkpath(path);
         if (path == "") {
-            DEBUG << "HgRunner::addExtensionOptions: Failed to get cache location" << endl;
+            DEBUG << "HgRunner::getAuthFilePath: Failed to get cache location" << endl;
             return "";
         }
 
@@ -509,7 +509,7 @@
     if (m_authKey == "") {
         QByteArray key = randomKey();
         if (key == QByteArray()) {
-            DEBUG << "HgRunner::addExtensionOptions: Failed to get proper auth key" << endl;
+            DEBUG << "HgRunner::getAuthKey: Failed to get proper auth key" << endl;
             return "";
         }
         QString key16 = QString::fromLocal8Bit(key.toBase64()).left(16);