mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-30 17:20:32 +01:00
2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed regressions in rdairplay(1), rdcastmanager(1) and rdcatch(1) where configuration changes would not be updated properly. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -287,15 +287,13 @@ void EditCartEvent::selectCartData()
|
||||
if(edit_cart!=NULL) {
|
||||
cartnum=edit_cart->number();
|
||||
}
|
||||
switch(catch_cart_dialog->exec(&cartnum,RDCart::Macro,QString(),NULL)) {
|
||||
case 0:
|
||||
if(edit_cart!=NULL) {
|
||||
delete edit_cart;
|
||||
}
|
||||
edit_cart=new RDCart(cartnum);
|
||||
edit_destination_edit->setText(QString().sprintf("%d",cartnum));
|
||||
edit_description_edit->setText(edit_cart->title());
|
||||
break;
|
||||
if(catch_cart_dialog->exec(&cartnum,RDCart::Macro,QString(),NULL)) {
|
||||
if(edit_cart!=NULL) {
|
||||
delete edit_cart;
|
||||
}
|
||||
edit_cart=new RDCart(cartnum);
|
||||
edit_destination_edit->setText(QString().sprintf("%d",cartnum));
|
||||
edit_description_edit->setText(edit_cart->title());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user