diff options
author | saturneric <[email protected]> | 2025-01-27 15:39:09 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-01-27 15:39:09 +0000 |
commit | af1870fd422fc615a7039b998f505f100e98474a (patch) | |
tree | 5453ac586ce694863ecf438136614d3675b83aca /src/core/function/gpg/GpgAdvancedOperator.h | |
parent | feat: allow changing sort options by ui at file page (diff) | |
download | GpgFrontend-af1870fd422fc615a7039b998f505f100e98474a.tar.gz GpgFrontend-af1870fd422fc615a7039b998f505f100e98474a.zip |
fix: kill all gnupg daemons in a proper way
Diffstat (limited to 'src/core/function/gpg/GpgAdvancedOperator.h')
-rw-r--r-- | src/core/function/gpg/GpgAdvancedOperator.h | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/src/core/function/gpg/GpgAdvancedOperator.h b/src/core/function/gpg/GpgAdvancedOperator.h index 1be2c2e4..cfd5fbcf 100644 --- a/src/core/function/gpg/GpgAdvancedOperator.h +++ b/src/core/function/gpg/GpgAdvancedOperator.h @@ -60,7 +60,7 @@ class GPGFRONTEND_CORE_EXPORT GpgAdvancedOperator { * @return true * @return false */ - static void RestartGpgComponents(); + static void RestartGpgComponents(OperationCallback); /** * @brief @@ -76,29 +76,13 @@ class GPGFRONTEND_CORE_EXPORT GpgAdvancedOperator { * @return true * @return false */ - static void StartGpgAgent(OperationCallback); - - /** - * @brief - * - * @return true - * @return false - */ - static void StartDirmngr(OperationCallback); - - /** - * @brief - * - * @return true - * @return false - */ - static void StartKeyBoxd(OperationCallback); + static void LaunchGpgComponents(OperationCallback); /** * @brief * */ - static void KillAllGpgComponents(); + static void KillAllGpgComponents(OperationCallback); }; } // namespace GpgFrontend |