[libcalamaresui] No point in isLoaded() being virtual.

This commit is contained in:
Adriaan de Groot 2018-05-29 03:38:17 -04:00
parent a04915e6fa
commit eddee7d76a
2 changed files with 1 additions and 8 deletions

View File

@ -276,13 +276,6 @@ Module::interfaceString() const
}
bool
Module::isLoaded() const
{
return m_loaded;
}
QVariantMap
Module::configurationMap()
{

View File

@ -147,7 +147,7 @@ public:
* @brief isLoaded reports on the loaded status of a module.
* @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.