1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-31 22:05:10 +02:00

Boyscouting: Fix doxygen format

Remove commas to separate param from description
Use three slashes-style
This commit is contained in:
Sandy Carter 2015-08-22 12:38:34 -04:00
parent f28c33001c
commit c6b51a7beb

View File

@ -248,14 +248,12 @@ public:
void mouseMoved (const SDL_MouseMotionEvent & sEvent); void mouseMoved (const SDL_MouseMotionEvent & sEvent);
void showAll(SDL_Surface * to); void showAll(SDL_Surface * to);
/** /// @param position coordinates of slider
* @param position, coordinates of slider /// @param length length of slider ribbon, including left/right buttons
* @param length, length of slider ribbon, including left/right buttons /// @param Moved function that will be called whenever slider moves
* @param Moved, function that will be called whenever slider moves /// @param Capacity maximal number of visible at once elements
* @param Capacity, maximal number of visible at once elements /// @param Amount total amount of elements, including not visible
* @param Amount, total amount of elements, including not visible /// @param Value starting position
* @param Value, starting position
*/
CSlider(Point position, int length, std::function<void(int)> Moved, int Capacity, int Amount, CSlider(Point position, int length, std::function<void(int)> Moved, int Capacity, int Amount,
int Value=0, bool Horizontal=true, EStyle style = BROWN); int Value=0, bool Horizontal=true, EStyle style = BROWN);
~CSlider(); ~CSlider();