From 7f2b0620456023a15e7c5edec9998bd221cd2023 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 28 Jul 2020 22:35:38 +0200 Subject: [PATCH] ProjectExplorer: Use LabelPlacement::InExtraLabel as default in BaseBoolAspect Change-Id: Iba1d44bf01b7364ce3b3787528fee184872d6927 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/projectconfigurationaspects.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/projectconfigurationaspects.h b/src/plugins/projectexplorer/projectconfigurationaspects.h index 09b236fd1e7..d284289d5cb 100644 --- a/src/plugins/projectexplorer/projectconfigurationaspects.h +++ b/src/plugins/projectexplorer/projectconfigurationaspects.h @@ -65,7 +65,8 @@ public: void setDefaultValue(bool defaultValue); enum class LabelPlacement { AtCheckBox, InExtraLabel }; - void setLabel(const QString &label, LabelPlacement labelPlacement); + void setLabel(const QString &label, + LabelPlacement labelPlacement = LabelPlacement::InExtraLabel); void setToolTip(const QString &tooltip); void setEnabled(bool enabled);