Add missing override keyword in CContextApplication

This commit is contained in:
Roland Winklmeier
2016-01-28 02:49:09 +01:00
parent c5fab7fb71
commit 459b935e3b
3 changed files with 6 additions and 6 deletions

View File

@@ -53,14 +53,14 @@ namespace BlackCore
}
//! \copydoc IContextApplication::getAllLogSubscriptions
virtual CLogSubscriptionHash getAllLogSubscriptions() const
virtual CLogSubscriptionHash getAllLogSubscriptions() const override
{
logEmptyContextWarning(Q_FUNC_INFO);
return CLogSubscriptionHash();
}
//! \copydoc IContextApplication::synchronizeLogSubscriptions
virtual void synchronizeLogSubscriptions()
virtual void synchronizeLogSubscriptions() override
{
logEmptyContextWarning(Q_FUNC_INFO);
}