2022-09-07 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcatch(1) that could cause the wrong
	host to be used as the default location when creating a new
	event.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2022-09-07 12:22:32 -04:00
parent 4b27b119c1
commit b5c91dffb3
2 changed files with 5 additions and 1 deletions

View File

@ -23264,3 +23264,7 @@
2022-09-07 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) that broke operation of the
head and tail audition buttons.
2022-09-07 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) that could cause the wrong
host to be used as the default location when creating a new
event.

View File

@ -295,7 +295,7 @@ RDRecording::ExitCode RecordListModel::recordExitCode(const QModelIndex &row)
QString RecordListModel::hostName(const QModelIndex &row) const
{
return d_texts.at(row.row()).at(23).toString();
return d_texts.at(row.row()).at(24).toString();
}