diff options
author | hjk <[email protected]> | 2023-08-23 16:53:06 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2023-08-24 05:56:57 +0000 |
commit | 6e307be365d3a4fd79b44589bde58d75590b4064 (patch) | |
tree | ff68dc3cc9b726185678d1d77fda30ad10a6030b /src/plugins/cmakeprojectmanager/cmaketool.h | |
parent | 14d21f4f2cf0926ae9423450d646f5c21bdc3bdd (diff) |
Utils: Rename the new Storage to Store
Apparently that's what the young people on the web use for such a thing.
Change-Id: I75d5396ff3cb3c26efd6008b5f2261354c4f7896
Reviewed-by: Marcus Tillmanns <[email protected]>
Reviewed-by: Jarek Kobus <[email protected]>
Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmaketool.h')
-rw-r--r-- | src/plugins/cmakeprojectmanager/cmaketool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmaketool.h b/src/plugins/cmakeprojectmanager/cmaketool.h index 744a34f2fb4..5243ef06523 100644 --- a/src/plugins/cmakeprojectmanager/cmaketool.h +++ b/src/plugins/cmakeprojectmanager/cmaketool.h @@ -9,7 +9,7 @@ #include <utils/filepath.h> #include <utils/id.h> -#include <utils/storage.h> +#include <utils/store.h> #include <optional> @@ -60,7 +60,7 @@ public: bool isValid() const; Utils::Id id() const { return m_id; } - Utils::Storage toMap () const; + Utils::Store toMap () const; void setAutorun(bool autoRun) { m_isAutoRun = autoRun; } |