mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +01:00
2021-09-11 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that could cause segfaults when changing the contents of the 'PRE-IMPORT CARTS' or 'POST-IMPORT CARTS' lists in the 'Editing Event' dialog in rdlogmanager(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -22393,3 +22393,7 @@
|
|||||||
'pypad_nautel.py'.
|
'pypad_nautel.py'.
|
||||||
2021-09-10 Fred Gleason <fredg@paravelsystems.com>
|
2021-09-10 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a 'no such signal' error in 'rdcatchd/rdcatchd.cpp'.
|
* Fixed a 'no such signal' error in 'rdcatchd/rdcatchd.cpp'.
|
||||||
|
2021-09-11 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdlogmanager(1) that could cause segfaults when
|
||||||
|
changing the contents of the 'PRE-IMPORT CARTS' or 'POST-IMPORT CARTS'
|
||||||
|
lists in the 'Editing Event' dialog in rdlogmanager(1).
|
||||||
|
|||||||
@@ -401,6 +401,7 @@ QModelIndex ImportCartsModel::processCartDrop(int line,RDLogLine *ll)
|
|||||||
d_trans_types.removeAt(line);
|
d_trans_types.removeAt(line);
|
||||||
d_lengths.removeAt(line);
|
d_lengths.removeAt(line);
|
||||||
d_icons.removeAt(line);
|
d_icons.removeAt(line);
|
||||||
|
d_marker_comments.removeAt(line);
|
||||||
endRemoveRows();
|
endRemoveRows();
|
||||||
}
|
}
|
||||||
else { // Add line
|
else { // Add line
|
||||||
@@ -419,6 +420,7 @@ QModelIndex ImportCartsModel::processCartDrop(int line,RDLogLine *ll)
|
|||||||
d_trans_types.insert(line,ll->transType());
|
d_trans_types.insert(line,ll->transType());
|
||||||
d_lengths.insert(line,ll->forcedLength());
|
d_lengths.insert(line,ll->forcedLength());
|
||||||
d_icons.insert(line,rda->iconEngine()->typeIcon(ll->type()));
|
d_icons.insert(line,rda->iconEngine()->typeIcon(ll->type()));
|
||||||
|
d_marker_comments.insert(line,ll->markerComment());
|
||||||
endInsertRows();
|
endInsertRows();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user