Skip to content

Commit

Permalink
Added handling of swapItemAt for QList
Browse files Browse the repository at this point in the history
  • Loading branch information
ubuntolog committed Feb 19, 2025
1 parent f73fe1f commit f4c517b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cppCORE
Submodule cppCORE updated 1 files
+4 −11 cppCORE_global.h
2 changes: 1 addition & 1 deletion src/cppNGS/RtfDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -442,5 +442,5 @@ void RtfTable::sortbyCols(const QList<int> &indices)

void RtfTable::swapRows(int i_row_a, int i_row_b)
{
rows_.swapItemsAt(i_row_a, i_row_b);
QLIST_SWAP_ITEMS_AT(rows_, i_row_a, i_row_b);
}

0 comments on commit f4c517b

Please sign in to comment.