From 8a347dee86b312e16f92ca6e9a1f26bb5325ac44 Mon Sep 17 00:00:00 2001 From: Fabien Spindler Date: Mon, 15 Apr 2024 09:18:05 +0200 Subject: [PATCH] Fix doxygen warning commenting missing parameters --- modules/gui/src/pointcloud/vpDisplayPCL.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/gui/src/pointcloud/vpDisplayPCL.cpp b/modules/gui/src/pointcloud/vpDisplayPCL.cpp index e942990332..ac6b4b533d 100644 --- a/modules/gui/src/pointcloud/vpDisplayPCL.cpp +++ b/modules/gui/src/pointcloud/vpDisplayPCL.cpp @@ -52,6 +52,9 @@ vpDisplayPCL::vpDisplayPCL(int posx, int posy, const std::string &window_name) * Constructor able to initialize the display window size. * \param[in] width : Point cloud viewer width. * \param[in] height : Point cloud viewer height. + * \param[in] posx : Position along X-axis. + * \param[in] posy : Position along Y-axis. + * \param[in] window_name : Window name. */ vpDisplayPCL::vpDisplayPCL(unsigned int width, unsigned int height, int posx, int posy, const std::string &window_name) : m_stop(false), m_verbose(false), m_width(width), m_height(height), m_posx(posx), m_posy(posy),