Skip to content

Commit

Permalink
fixed SIZE_T for columnNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
daddel80 committed Dec 22, 2023
1 parent 2a922ad commit 8343d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MultiReplacePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2850,7 +2850,7 @@ void MultiReplace::handleSortColumns(SortDirection sortDirection)
rowData.columns.resize(columnDelimiterData.inputColumns.size());

size_t columnIndex = 0;
for (int columnNumber : columnDelimiterData.inputColumns) {
for (SIZE_T columnNumber : columnDelimiterData.inputColumns) {
LRESULT startPos, endPos;

// Calculate start and end positions for each column
Expand Down

0 comments on commit 8343d27

Please sign in to comment.