From 5ba90378857ebeb9c6f92fad9455f8e17a81fc79 Mon Sep 17 00:00:00 2001 From: Pieter Hijma Date: Thu, 10 Apr 2025 16:38:10 +0200 Subject: [PATCH] [Doc] Fix unassociated doc strings Before this commit, these doc strings were unassociated, which means that the can appear at random places. They are now associated with their namespace an class. --- src/Mod/Import/App/SketchExportHelper.h | 4 +++- src/Mod/TechDraw/Gui/CommandHelpers.h | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Mod/Import/App/SketchExportHelper.h b/src/Mod/Import/App/SketchExportHelper.h index ca4f711b11..2a5af3c3fd 100644 --- a/src/Mod/Import/App/SketchExportHelper.h +++ b/src/Mod/Import/App/SketchExportHelper.h @@ -20,7 +20,6 @@ * * ***************************************************************************/ -//! a class to assist with exporting sketches to dxf #include @@ -35,6 +34,9 @@ class DocumentObject; namespace Import { +/** + * A class to assist with exporting sketches to dxf. + */ class ImportExport SketchExportHelper { public: diff --git a/src/Mod/TechDraw/Gui/CommandHelpers.h b/src/Mod/TechDraw/Gui/CommandHelpers.h index ac854f45bc..a23872607b 100644 --- a/src/Mod/TechDraw/Gui/CommandHelpers.h +++ b/src/Mod/TechDraw/Gui/CommandHelpers.h @@ -22,7 +22,6 @@ * * ***************************************************************************/ -//! CommandHelpers is a collection of methods for common actions in commands #ifndef COMMANDHELPERS_H @@ -46,6 +45,9 @@ namespace TechDraw { class DrawView; class DrawViewPart; +/** + * CommandHelpers is a collection of methods for common actions in commands. + */ namespace CommandHelpers { TechDraw::DrawView* firstViewInSelection(Gui::Command* cmd); TechDraw::DrawView* firstNonSpreadsheetInSelection(Gui::Command* cmd);