From c6b51a7beb2f9dc9710d9c112e9e526e7dfccaee Mon Sep 17 00:00:00 2001 From: Sandy Carter Date: Sat, 22 Aug 2015 12:38:34 -0400 Subject: [PATCH] Boyscouting: Fix doxygen format Remove commas to separate param from description Use three slashes-style --- client/widgets/Buttons.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/client/widgets/Buttons.h b/client/widgets/Buttons.h index fb41e8a02..e684a192a 100644 --- a/client/widgets/Buttons.h +++ b/client/widgets/Buttons.h @@ -248,14 +248,12 @@ public: void mouseMoved (const SDL_MouseMotionEvent & sEvent); void showAll(SDL_Surface * to); - /** - * @param position, coordinates of slider - * @param length, length of slider ribbon, including left/right buttons - * @param Moved, function that will be called whenever slider moves - * @param Capacity, maximal number of visible at once elements - * @param Amount, total amount of elements, including not visible - * @param Value, starting position - */ + /// @param position coordinates of slider + /// @param length length of slider ribbon, including left/right buttons + /// @param Moved function that will be called whenever slider moves + /// @param Capacity maximal number of visible at once elements + /// @param Amount total amount of elements, including not visible + /// @param Value starting position CSlider(Point position, int length, std::function Moved, int Capacity, int Amount, int Value=0, bool Horizontal=true, EStyle style = BROWN); ~CSlider();