Skip to content

Commit

Permalink
Doxygen tag (moveit#1955)
Browse files Browse the repository at this point in the history
* Generate Doxygen Tag

* Install tagfile in output directory

* Fix problematic override for Doxygen linking
  • Loading branch information
henningkayser committed Feb 17, 2023
1 parent b1b554e commit 752571e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -194,7 +194,7 @@ class ProgressBarEditor : public QWidget
{
value_ = value;
}
float value() const
float getValue() const
{
return value_;
}
Expand Down

0 comments on commit 752571e

Please sign in to comment.