aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/docker/dockerdevice.h
diff options
context:
space:
mode:
authorhjk <[email protected]>2025-04-11 11:51:03 +0200
committerhjk <[email protected]>2025-04-11 14:51:57 +0000
commiteeaa93fc749d36abb7b2f175ba25d36cbd95d1c6 (patch)
tree2fe3132c1431f3a365191e844db9031d950d3880 /src/plugins/docker/dockerdevice.h
parenta460ec1641f6fb39901bb38d930a209a9078efaf (diff)
Replace most expected_str by Utils::Result
Keep it in Axivion dto, which is generated. Change-Id: I83a12de6234ac7b0218b369875bdc72d25dbadfb Reviewed-by: Eike Ziller <[email protected]> Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/plugins/docker/dockerdevice.h')
-rw-r--r--src/plugins/docker/dockerdevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/docker/dockerdevice.h b/src/plugins/docker/dockerdevice.h
index ed849483fc8..236ed21bb22 100644
--- a/src/plugins/docker/dockerdevice.h
+++ b/src/plugins/docker/dockerdevice.h
@@ -55,9 +55,9 @@ public:
bool handlesFile(const Utils::FilePath &filePath) const override;
bool ensureReachable(const Utils::FilePath &other) const override;
- Utils::expected_str<Utils::FilePath> localSource(const Utils::FilePath &other) const override;
+ Utils::Result<Utils::FilePath> localSource(const Utils::FilePath &other) const override;
- Utils::expected_str<Utils::Environment> systemEnvironmentWithError() const override;
+ Utils::Result<Utils::Environment> systemEnvironmentWithError() const override;
Utils::Result<> updateContainerAccess() const;
void setMounts(const QStringList &mounts) const;