diff options
author | saturneric <[email protected]> | 2023-10-17 14:57:03 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-17 14:57:03 +0000 |
commit | e5694e9f6d2a84954eaf508557caa795f5282b07 (patch) | |
tree | 40dd946005f7d5b7cdab7db608367add5bbdb38b /src/plugin/module/version_checking_plugin/VersionCheckTask.cpp | |
parent | refactor: flatpak yml file can not host here (diff) | |
download | GpgFrontend-e5694e9f6d2a84954eaf508557caa795f5282b07.tar.gz GpgFrontend-e5694e9f6d2a84954eaf508557caa795f5282b07.zip |
refactor: change plugin system to module system
Diffstat (limited to '')
-rw-r--r-- | src/module/integrated/version_checking_module/VersionCheckTask.cpp (renamed from src/plugin/module/version_checking_plugin/VersionCheckTask.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin/module/version_checking_plugin/VersionCheckTask.cpp b/src/module/integrated/version_checking_module/VersionCheckTask.cpp index 2a26a53c..b1e8eca8 100644 --- a/src/plugin/module/version_checking_plugin/VersionCheckTask.cpp +++ b/src/module/integrated/version_checking_module/VersionCheckTask.cpp @@ -34,7 +34,7 @@ #include "GpgFrontendBuildInfo.h" -namespace GpgFrontend::Plugin::Module::VersionCheckingPlugin { +namespace GpgFrontend::Module::Integrated::VersionCheckingModule { VersionCheckTask::VersionCheckTask() : Task("version_check_task"), @@ -176,4 +176,4 @@ void VersionCheckTask::slot_parse_current_version_info() { emit SignalTaskRunnableEnd(0); } -} // namespace GpgFrontend::Plugin::Module::VersionCheckingPlugin +} // namespace GpgFrontend::Module::Integrated::VersionCheckingModule |