mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 10:55:37 -04:00
[libcalamaresui] No point in isLoaded() being virtual.
This commit is contained in:
parent
a04915e6fa
commit
eddee7d76a
2 changed files with 1 additions and 8 deletions
|
@ -276,13 +276,6 @@ Module::interfaceString() const
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool
|
|
||||||
Module::isLoaded() const
|
|
||||||
{
|
|
||||||
return m_loaded;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QVariantMap
|
QVariantMap
|
||||||
Module::configurationMap()
|
Module::configurationMap()
|
||||||
{
|
{
|
||||||
|
|
|
@ -147,7 +147,7 @@ public:
|
||||||
* @brief isLoaded reports on the loaded status of a module.
|
* @brief isLoaded reports on the loaded status of a module.
|
||||||
* @return true if the module's loading phase has finished, otherwise false.
|
* @return true if the module's loading phase has finished, otherwise false.
|
||||||
*/
|
*/
|
||||||
virtual bool isLoaded() const;
|
bool isLoaded() const { return m_loaded; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief loadSelf initialized the module.
|
* @brief loadSelf initialized the module.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue