summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/component.cpp
diff options
context:
space:
mode:
authorArttu Tarkiainen <arttu.tarkiainen@qt.io>2023-01-27 09:59:10 +0200
committerArttu Tarkiainen <arttu.tarkiainen@qt.io>2023-01-27 10:38:55 +0000
commitf5c48c86d3670240fc5c36c2f406196fc23527d5 (patch)
tree1823d302c330bf513908fdf68005d03ce5848f82 /src/libs/installer/component.cpp
parent476b6d6fffaf6841adaf68889e8b8ddae17dd382 (diff)
parent50575212455fbd3109adbe92d8509fca3c51850a (diff)
Merge remote-tracking branch 'origin/4.5'
Diffstat (limited to 'src/libs/installer/component.cpp')
-rw-r--r--src/libs/installer/component.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/libs/installer/component.cpp b/src/libs/installer/component.cpp
index ccf9dc8bb..32f3fefc6 100644
--- a/src/libs/installer/component.cpp
+++ b/src/libs/installer/component.cpp
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** Copyright (C) 2022 The Qt Company Ltd.
+** Copyright (C) 2023 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Installer Framework.
@@ -1367,6 +1367,15 @@ bool Component::forcedInstallation() const
}
/*!
+ Returns whether this component is essential. Essential components
+ are always installed, and updated before other components.
+*/
+bool Component::isEssential() const
+{
+ return d->m_vars.value(scEssential, scFalse).toLower() == scTrue;
+}
+
+/*!
Sets the validator callback name to \a name.
*/
void Component::setValidatorCallbackName(const QString &name)