2021-02-15 Fred Gleason <fredg@paravelsystems.com>

* Refactored the 'Select Group' dialog to use the model based API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-15 16:28:44 -05:00
parent a236f636a5
commit a12ac4401b
11 changed files with 47 additions and 95 deletions

View File

@@ -568,9 +568,8 @@ void DiskRipper::setMultiButtonData()
//
// Get Destination Group
//
RDListGroups *list_groups=new RDListGroups(rip_group_text,rda->user()->name(),
this);
if(list_groups->exec()<0) {
RDListGroups *list_groups=new RDListGroups(rip_group_text,"RDLibrary",this);
if(!list_groups->exec()) {
delete list_groups;
return;
}