aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildconfiguration.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-07-21 18:23:50 +0200
committerhjk <hjk@qt.io>2023-07-24 06:31:51 +0000
commit1c4f9733659521ae7bdf24ef6e48a956ef2ab373 (patch)
tree5a41e158afdabbfa3e66cdb87c2914e9b728d539 /src/plugins/projectexplorer/buildconfiguration.h
parenta263d3de89f54382a1ef9f30d678e7c15a052f85 (diff)
ProjectExplorer: Replace the fromMap error return value
... by some out-of-band mechanism, keeping previous functionality. The driving reason is to get the same fromMap signature as in the AspectContainer base, however, the whole mechanism seems rather useless: There are only a few places that actually ever could report errors, in those places "moving on" looks ok, too, and these few places are not conceptually different than a lot others. Removal of this (new) mechanism is left for later. Change-Id: Ibe7a0456bc3b84a84e942231f14446e783372d76 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/buildconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/buildconfiguration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildconfiguration.h b/src/plugins/projectexplorer/buildconfiguration.h
index 64bcd2c8b3..85ee42247b 100644
--- a/src/plugins/projectexplorer/buildconfiguration.h
+++ b/src/plugins/projectexplorer/buildconfiguration.h
@@ -68,7 +68,7 @@ public:
void appendInitialBuildStep(Utils::Id id);
void appendInitialCleanStep(Utils::Id id);
- bool fromMap(const QVariantMap &map) override;
+ void fromMap(const QVariantMap &map) override;
void toMap(QVariantMap &map) const override;
bool isEnabled() const;