Skip to content

Commit

Permalink
[PR 17922] Fix doxy in input code after clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear committed Jun 5, 2020
1 parent e975fc4 commit 9da2c88
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions xbmc/input/ButtonTranslator.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class CButtonTranslator
\param window the window id
\param key the key to query the action for
\param fallback if no action is directly configured for the given window, obtain the action from
fallback window, if exists or from global config as last resort \return the action matching the
key
fallback window, if exists or from global config as last resort
\return the action matching the key
*/
CAction GetAction(int window, const CKey& key, bool fallback = true);

Expand Down
4 changes: 3 additions & 1 deletion xbmc/input/InputCodingTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ class IInputCodingTable
}

/*! \brief Can be overridden if initialization is expensive to avoid calling initialize more than
needed \return true if initialization has been done and was successful, false otherwise.
needed
\return true if initialization has been done and was successful, false otherwise.
*/
virtual bool IsInitialized() const
{
Expand Down
10 changes: 5 additions & 5 deletions xbmc/input/mouse/MouseStat.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ class CMouseStat
The actions we detect are:
* short clicks - down/up press of the mouse within short_click_time ms, where the pointer stays
within click_confines pixels
within click_confines pixels
* long clicks - down/up press of the mouse greater than short_click_time ms, where the pointers
stays within click_confines pixels
stays within click_confines pixels
* double clicks - a further down press of the mouse within double_click_time of the up press of
a short click, where the pointer stays within click_confines pixels
a short click, where the pointer stays within click_confines pixels
* drag - the mouse is down and has been moved more than click_confines pixels
\sa CMouseStat
Expand Down Expand Up @@ -193,9 +193,9 @@ class CMouseStat

/*! \brief detect whether the mouse has moved
Uses a trigger threshold of 2 pixels to detect mouse movement
Uses a trigger threshold of 2 pixels to detect mouse movement
\return whether the mouse has moved past the trigger threshold.
\return whether the mouse has moved past the trigger threshold.
*/
bool MovedPastThreshold() const;

Expand Down

0 comments on commit 9da2c88

Please sign in to comment.