Tables: Remove comment referencing removed field SortSign (#6807)

This commit is contained in:
Dexter Castor Döpping 2023-09-11 17:26:53 +02:00 committed by GitHub
parent 3aceb61059
commit 556a1397a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2229,7 +2229,7 @@ struct ImGuiTableColumnSortSpecs
ImGuiID ColumnUserID; // User id of the column (if specified by a TableSetupColumn() call)
ImS16 ColumnIndex; // Index of the column
ImS16 SortOrder; // Index within parent ImGuiTableSortSpecs (always stored in order starting from 0, tables sorted on a single criteria will always have a 0 here)
ImGuiSortDirection SortDirection : 8; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending (you can use this or SortSign, whichever is more convenient for your sort function)
ImGuiSortDirection SortDirection : 8; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending
ImGuiTableColumnSortSpecs() { memset(this, 0, sizeof(*this)); }
};