From 752571e9ff027b3137b9720227681ed6b57e42d6 Mon Sep 17 00:00:00 2001 From: Henning Kayser Date: Fri, 17 Feb 2023 19:04:56 +0100 Subject: [PATCH] Doxygen tag (#1955) * Generate Doxygen Tag * Install tagfile in output directory * Fix problematic override for Doxygen linking --- Doxyfile | 2 +- .../motion_planning_frame_joints_widget.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Doxyfile b/Doxyfile index 26ee59811d..956785f4de 100644 --- a/Doxyfile +++ b/Doxyfile @@ -2081,7 +2081,7 @@ TAGFILES = # tag file that is based on the input files it reads. See section "Linking to # external documentation" for more information about the usage of tag files. -GENERATE_TAGFILE = +GENERATE_TAGFILE = $(DOXYGEN_OUTPUT_DIRECTORY)/MoveIt.tag # If the ALLEXTERNALS tag is set to YES, all external class will be listed in # the class index. If set to NO, only the inherited external classes will be diff --git a/moveit_ros/visualization/motion_planning_rviz_plugin/include/moveit/motion_planning_rviz_plugin/motion_planning_frame_joints_widget.h b/moveit_ros/visualization/motion_planning_rviz_plugin/include/moveit/motion_planning_rviz_plugin/motion_planning_frame_joints_widget.h index 679cf7d1a8..ee15f6521c 100644 --- a/moveit_ros/visualization/motion_planning_rviz_plugin/include/moveit/motion_planning_rviz_plugin/motion_planning_frame_joints_widget.h +++ b/moveit_ros/visualization/motion_planning_rviz_plugin/include/moveit/motion_planning_rviz_plugin/motion_planning_frame_joints_widget.h @@ -184,7 +184,7 @@ private Q_SLOTS: class ProgressBarEditor : public QWidget { Q_OBJECT - Q_PROPERTY(float value READ value WRITE setValue NOTIFY valueChanged USER true) + Q_PROPERTY(float value READ getValue WRITE setValue NOTIFY valueChanged USER true) public: /// Create a progressbar-like slider for editing values in range mix..max @@ -194,7 +194,7 @@ class ProgressBarEditor : public QWidget { value_ = value; } - float value() const + float getValue() const { return value_; }