From ca6fe75f43f3cee38b30ca98d9b85f646a75d73f Mon Sep 17 00:00:00 2001 From: Pieter Hijma Date: Thu, 8 May 2025 20:40:28 +0200 Subject: [PATCH] Doc: Fix small doc warnings in ExtensionContainer --- src/App/ExtensionContainer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/ExtensionContainer.h b/src/App/ExtensionContainer.h index 0b56e4c781..c3f56699bd 100644 --- a/src/App/ExtensionContainer.h +++ b/src/App/ExtensionContainer.h @@ -133,7 +133,7 @@ class Extension; * For information on how to create extension see the documentation of * Extension. * - * @section{sec_limitations_python_multiple_inheritance Limitations of Python} + * @section Limitations of Python * * Without this extension system, it would be challenging to use extending * functionality in FreeCAD. Although C++ supports multiple inheritance, it is @@ -217,7 +217,7 @@ public: * @throws Base::TypeError if no extension of the given type is found and * @p no_except is false. */ - App::Extension* getExtension(Base::Type, bool derived = true, bool no_except = false) const; + App::Extension* getExtension(Base::Type type, bool derived = true, bool no_except = false) const; /** * @brief Get the extension with the given name.