diff --git a/docs/Doxyfile.qmake b/docs/Doxyfile.qmake index de8271bac..2f2ed44f8 100644 --- a/docs/Doxyfile.qmake +++ b/docs/Doxyfile.qmake @@ -1988,7 +1988,7 @@ INCLUDE_FILE_PATTERNS = # recursively expanded use the := operator instead of the = operator. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -PREDEFINED = Q_COMPILER_VARIADIC_TEMPLATES:=1 +# PREDEFINED = slots= # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this # tag can be used to specify a list of macro names that should be expanded. The diff --git a/src/blackcore/context/contextapplicationimpl.h b/src/blackcore/context/contextapplicationimpl.h index 923627b02..96664c830 100644 --- a/src/blackcore/context/contextapplicationimpl.h +++ b/src/blackcore/context/contextapplicationimpl.h @@ -107,10 +107,6 @@ namespace BlackCore //! \copydoc IContextApplication::existsFile virtual bool existsFile(const QString &fileName) const override; - public: - //! \todo Remove with old settings - using IContextApplication::changeSettings; - protected: //! Constructor CContextApplication(CCoreFacadeConfig::ContextMode mode, CCoreFacade *runtime); diff --git a/src/blackcore/context/contextapplicationproxy.h b/src/blackcore/context/contextapplicationproxy.h index b92140853..f13424217 100644 --- a/src/blackcore/context/contextapplicationproxy.h +++ b/src/blackcore/context/contextapplicationproxy.h @@ -48,9 +48,6 @@ namespace BlackCore //! Destructor virtual ~CContextApplicationProxy() {} - //! \todo Remove with old settings - using IContextApplication::changeSettings; - public slots: //! \copydoc IContextApplication::logMessage virtual void logMessage(const BlackMisc::CStatusMessage &message, const BlackMisc::CIdentifier &origin) override; diff --git a/src/blackmisc/statusmessagelist.cpp b/src/blackmisc/statusmessagelist.cpp index cef97467e..ad84c7cc0 100644 --- a/src/blackmisc/statusmessagelist.cpp +++ b/src/blackmisc/statusmessagelist.cpp @@ -7,6 +7,8 @@ * contained in the LICENSE file. */ +//! \cond PRIVATE + #include "blackmisc/compare.h" #include "blackmisc/range.h" #include "blackmisc/statusmessagelist.h" @@ -208,3 +210,5 @@ namespace BlackMisc return messages; } } // ns + +//! \endcond