Codechange: Make some variables and constants documentation comments recognised by doxygen.

This commit is contained in:
Cyprian Klimaszewski
2026-02-21 15:05:13 +01:00
committed by rubidium42
parent 7a6b7fb1f0
commit 21bee91fa7
71 changed files with 263 additions and 204 deletions
+2 -2
View File
@@ -173,8 +173,8 @@ static void AddCustomRefreshRates()
std::copy(monitor_rates.begin(), monitor_rates.end(), std::inserter(_refresh_rates, _refresh_rates.end()));
}
static const int SCALE_NMARKS = (MAX_INTERFACE_SCALE - MIN_INTERFACE_SCALE) / 25 + 1; // Show marks at 25% increments
static const int VOLUME_NMARKS = 9; // Show 5 values and 4 empty marks.
static const int SCALE_NMARKS = (MAX_INTERFACE_SCALE - MIN_INTERFACE_SCALE) / 25 + 1; ///< Show marks at 25% increments.
static const int VOLUME_NMARKS = 9; ///< Show 5 values and 4 empty marks.
static std::optional<std::string> ScaleMarkFunc(int, int, int value)
{