aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-03 04:36:35 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-08 20:50:05 +0100
commit4111de70e84121b7f6163373fc4c66fb57a85b8c (patch)
tree2b4fd3c2c0b2ec49344df5f42e1c683af3f75db0 /mobile-widgets/qmlmanager.cpp
parentdb706193e1ae896a2158e8ec77b0ae66bab015a4 (diff)
downloadsubsurface-4111de70e84121b7f6163373fc4c66fb57a85b8c.tar.gz
Mobile: drop extra argument to QString
Clearly a cut and paste error. Only creates a harmless warning, still... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index cefeee365..81b105d19 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -555,7 +555,7 @@ bool QMLManager::verifyCredentials(QString email, QString password, QString pin)
{
setStartPageText(tr("Testing cloud credentials"));
if (pin.isEmpty())
- appendTextToLog(QStringLiteral("verify credentials for email %1 (no PIN)").arg(email, pin));
+ appendTextToLog(QStringLiteral("verify credentials for email %1 (no PIN)").arg(email));
else
appendTextToLog(QStringLiteral("verify credentials for email %1 PIN %2").arg(email, pin));
CloudStorageAuthenticate *csa = new CloudStorageAuthenticate(this);