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/module/system/Event.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/system/Event.cpp (renamed from src/plugin/system/Event.cpp) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin/system/Event.cpp b/src/module/system/Event.cpp index b899e7e3..3e27e26d 100644 --- a/src/plugin/system/Event.cpp +++ b/src/module/system/Event.cpp @@ -30,7 +30,7 @@ #include <memory> -namespace GpgFrontend::Plugin { +namespace GpgFrontend::Module { class Event::Impl { public: @@ -105,4 +105,4 @@ void Event::AddParameter(const std::string& key, const ParameterValue& value) { p_->AddParameter(key, value); } -} // namespace GpgFrontend::Plugin
\ No newline at end of file +} // namespace GpgFrontend::Module
\ No newline at end of file |