2025-04-26 Fred Gleason <fredg@paravelsystems.com>

* Cleaned up compiler warnings in 'rdlogedit/'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2025-04-26 17:16:37 -04:00
parent 9edba5a9f0
commit bb3cd1f878
2 changed files with 4 additions and 2 deletions

View File

@ -24994,3 +24994,5 @@
* Cleaned up compiler warnings in 'rdcatch/'.
2025-04-26 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compiler warnings in 'rdlibrary/'.
2025-04-26 Fred Gleason <fredg@paravelsystems.com>
* Cleaned up compiler warnings in 'rdlogedit/'.

View File

@ -2,7 +2,7 @@
//
// The Log Editor Utility for Rivendell.
//
// (C) Copyright 2002-2023 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2025 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@ -370,7 +370,7 @@ void MainWidget::deleteData()
modified=false;
for(int i=0;i<(rows.size()-1);i++) {
if(rows.at(rowtable.at(i))<rows.at(rowtable.at(i+1))) {
rowtable.swap(i,i+1);
rowtable.swapItemsAt(i,i+1);
modified=true;
}
}