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

main
Adriaan de Groot 7 years ago
parent a04915e6fa
commit eddee7d76a

@ -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…
Cancel
Save