diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-11-03 04:36:35 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-11-08 20:50:05 +0100 |
commit | 4111de70e84121b7f6163373fc4c66fb57a85b8c (patch) | |
tree | 2b4fd3c2c0b2ec49344df5f42e1c683af3f75db0 /mobile-widgets/qmlmanager.cpp | |
parent | db706193e1ae896a2158e8ec77b0ae66bab015a4 (diff) | |
download | subsurface-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.cpp | 2 |
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); |