diff options
author | saturneric <[email protected]> | 2024-01-12 06:02:37 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-12 06:02:37 +0000 |
commit | bf538056b24a68b8fd235b1c50991ee8eb46a776 (patch) | |
tree | e1bab54095b80df62b321fb5bd69453f9f951b05 /src/core/module/Module.h | |
parent | feat: improve api and ui of keys import and export (diff) | |
download | GpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.tar.gz GpgFrontend-bf538056b24a68b8fd235b1c50991ee8eb46a776.zip |
refactor: use QString instead of std::string and improve threading system
Diffstat (limited to 'src/core/module/Module.h')
-rw-r--r-- | src/core/module/Module.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/module/Module.h b/src/core/module/Module.h index fe672698..2742475e 100644 --- a/src/core/module/Module.h +++ b/src/core/module/Module.h @@ -37,9 +37,9 @@ class Module; class GlobalModuleContext; class ModuleManager; -using ModuleIdentifier = std::string; -using ModuleVersion = std::string; -using ModuleMetaData = std::map<std::string, std::string>; +using ModuleIdentifier = QString; +using ModuleVersion = QString; +using ModuleMetaData = std::map<QString, QString>; using ModulePtr = std::shared_ptr<Module>; using TaskRunnerPtr = std::shared_ptr<Thread::TaskRunner>; |