Utils: Remove a unused aspect ctor parameters

Change-Id: I6e3c6ce7b04a7817f35da10f1975ae2fec62b9e4
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2023-05-22 08:15:05 +02:00
parent d740a355bb
commit d0881f5542
2 changed files with 2 additions and 3 deletions

View File

@@ -1426,11 +1426,10 @@ void ColorAspect::setVolatileValue(const QVariant &val)
*/
BoolAspect::BoolAspect(const QString &settingsKey)
BoolAspect::BoolAspect()
: d(new Internal::BoolAspectPrivate)
{
setDefaultValue(false);
setSettingsKey(settingsKey);
setSpan(2, 1);
addDataExtractor(this, &BoolAspect::value, &Data::value);

View File

@@ -213,7 +213,7 @@ class QTCREATOR_UTILS_EXPORT BoolAspect : public BaseAspect
Q_OBJECT
public:
explicit BoolAspect(const QString &settingsKey = QString());
BoolAspect();
~BoolAspect() override;
struct Data : BaseAspect::Data