Skip to content

Commit

Permalink
stackpanel.cpp: Add a doxygen docstring to an arbitrarily-picked func…
Browse files Browse the repository at this point in the history
…tion.

This is solely to test clangd LSP parsing of docstrings.
  • Loading branch information
ivucica committed Sep 15, 2023
1 parent 81e2093 commit 8d64e06
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion stackpanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,20 @@ yatcStackPanel::~yatcStackPanel()
{
}


/**
* @brief Overrides the default implementation for a glictList allowing dragging
* of children along the Y axis.
*
* The children are expected to be special yatcStackPanelWindow objects.
*
* @param evt event being dispatched to the stack panel
* @param wparam mouse position
* @param lparam unused
* @param returnvalue unused for handled events; passed to glictList::CastEvent
* as-is
*
* @return whether the event was handled
*/
bool yatcStackPanel::CastEvent(glictEvents evt, void* wparam, long lparam, void* returnvalue)
{
#if (GLICT_APIREV>=95)
Expand Down

0 comments on commit 8d64e06

Please sign in to comment.