From c3a23900281c2024f7d4507ac84b0fe700fbf6dd Mon Sep 17 00:00:00 2001 From: saturneric Date: Fri, 18 Oct 2024 20:15:36 +0200 Subject: feat: set reason code and text at revoke-certification --- src/core/function/gpg/GpgCommandExecutor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/function/gpg/GpgCommandExecutor.h') diff --git a/src/core/function/gpg/GpgCommandExecutor.h b/src/core/function/gpg/GpgCommandExecutor.h index e3b03c10..cb35e686 100644 --- a/src/core/function/gpg/GpgCommandExecutor.h +++ b/src/core/function/gpg/GpgCommandExecutor.h @@ -33,7 +33,7 @@ namespace GpgFrontend { using GpgCommandExecutorCallback = std::function; -using GpgCommandExecutorInteractor = std::function; +using GpgCommandExecutorInterator = std::function; /** * @brief Extra commands related to GPG @@ -45,7 +45,7 @@ class GPGFRONTEND_CORE_EXPORT GpgCommandExecutor { QString cmd; QStringList arguments; GpgCommandExecutorCallback cb_func; - GpgCommandExecutorInteractor int_func; + GpgCommandExecutorInterator int_func; Module::TaskRunnerPtr task_runner = nullptr; ExecuteContext( @@ -53,7 +53,7 @@ class GPGFRONTEND_CORE_EXPORT GpgCommandExecutor { GpgCommandExecutorCallback callback = [](int, const QString &, const QString &) {}, Module::TaskRunnerPtr task_runner = nullptr, - GpgCommandExecutorInteractor int_func = [](QProcess *) {}); + GpgCommandExecutorInterator int_func = [](QProcess *) {}); }; using ExecuteContexts = QList; -- cgit v1.2.3