mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-27 07:03:42 +01:00
2023-08-04 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlibrary(1) that caused cart deletion to fail with the message "Voicetrack Found". Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -24327,3 +24327,6 @@
|
|||||||
* Incremented the package version to 4.0.2int0.
|
* Incremented the package version to 4.0.2int0.
|
||||||
2023-08-04 Fred Gleason <fredg@paravelsystems.com>
|
2023-08-04 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Added a destructor to the 'RDMulticaster' class.
|
* Added a destructor to the 'RDMulticaster' class.
|
||||||
|
2023-08-04 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in rdlibrary(1) that caused cart deletion to
|
||||||
|
fail with the message "Voicetrack Found".
|
||||||
|
|||||||
@@ -424,9 +424,9 @@ RDCart::Type RDLibraryModel::cartType(const QModelIndex &index) const
|
|||||||
QString RDLibraryModel::cartOwnedBy(const QModelIndex &index)
|
QString RDLibraryModel::cartOwnedBy(const QModelIndex &index)
|
||||||
{
|
{
|
||||||
if(isCart(index)) {
|
if(isCart(index)) {
|
||||||
return d_texts.at(index.row()).at(20).toString();
|
return d_texts.at(index.row()).at(23).toString();
|
||||||
}
|
}
|
||||||
return d_texts.at(index.internalId()-1).at(20).toString();
|
return d_texts.at(index.internalId()-1).at(23).toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user