diff options
author | saturneric <[email protected]> | 2024-07-28 15:07:15 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-28 15:07:15 +0000 |
commit | adc5d89717cc1498c69792799c74ace413cca713 (patch) | |
tree | 698d46d2d36f95fcb74a6aa449ffcba1a4d5f637 /src/core/module/ModuleManager.cpp | |
parent | fix: can not import binary key data (diff) | |
download | GpgFrontend-adc5d89717cc1498c69792799c74ace413cca713.tar.gz GpgFrontend-adc5d89717cc1498c69792799c74ace413cca713.zip |
fix: correct the spelling of 'deactivate'
Diffstat (limited to 'src/core/module/ModuleManager.cpp')
-rw-r--r-- | src/core/module/ModuleManager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/module/ModuleManager.cpp b/src/core/module/ModuleManager.cpp index 45e9f657..51611a72 100644 --- a/src/core/module/ModuleManager.cpp +++ b/src/core/module/ModuleManager.cpp @@ -170,7 +170,7 @@ class ModuleManager::Impl { __func__, nullptr)); } - void DeactiveModule(const ModuleIdentifier& identifier) { + void DeactivateModule(const ModuleIdentifier& identifier) { Thread::TaskRunnerGetter::GetInstance() .GetTaskRunner(Thread::TaskRunnerGetter::kTaskRunnerType_Default) ->PostTask(new Thread::Task( @@ -281,8 +281,8 @@ void ModuleManager::ActiveModule(ModuleIdentifier id) { return p_->ActiveModule(id); } -void ModuleManager::DeactiveModule(ModuleIdentifier id) { - return p_->DeactiveModule(id); +void ModuleManager::DeactivateModule(ModuleIdentifier id) { + return p_->DeactivateModule(id); } auto ModuleManager::GetTaskRunner(ModuleIdentifier id) |