From 919882d1d519d9ab977c3f398e542a68ec8fed8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= Date: Wed, 10 Aug 2016 15:44:52 +0200 Subject: [PATCH] Accidentally swapped name and email address for DefaultKeyGenerationJob --- src/identity/identitydialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/identity/identitydialog.cpp b/src/identity/identitydialog.cpp index 2d564226c..f31ec2902 100644 --- a/src/identity/identitydialog.cpp +++ b/src/identity/identitydialog.cpp @@ -197,7 +197,7 @@ void KeyGenerationJob::start() auto job = new Kleo::DefaultKeyGenerationJob(this); connect(job, &Kleo::DefaultKeyGenerationJob::result, this, &KeyGenerationJob::keyGenerated); - job->start(mName, mEmail); + job->start(mEmail, mName); mJob = job; }