Rename formal parameter of ShowSortIndicator() to "col"

No real changes, just use a more appropriate parameter name, as it's a
column index and not just "index".
This commit is contained in:
Vadim Zeitlin
2021-12-14 14:19:10 +00:00
parent 52649cc566
commit 0a8e82b010
2 changed files with 3 additions and 3 deletions

View File

@@ -1432,7 +1432,7 @@ public:
@note This does not actually sort the list, use SortItems() for this.
@param idx
@param col
The column to set the sort indicator for.
If @c -1 is given, then the currently shown sort indicator
will be removed.
@@ -1442,7 +1442,7 @@ public:
@since 3.1.6
*/
void ShowSortIndicator(int idx, bool ascending = true);
void ShowSortIndicator(int col, bool ascending = true);
/**
Remove the sort indicator from the column being used as sort key.