2015-08-30 Fred Gleason <fredg@paravelsystems.com>

* Added PCM24 to 'lib/export_settings_dialog.cpp'.
This commit is contained in:
Fred Gleason
2015-08-30 08:14:59 -04:00
parent 8d70a79387
commit 398408476c
16 changed files with 98 additions and 87 deletions

View File

@@ -2,9 +2,7 @@
//
// Edit a Rivendell Upload Event
//
// (C) Copyright 2002-2005 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: edit_upload.cpp,v 1.22 2011/06/21 18:31:33 cvs Exp $
// (C) Copyright 2002-2015 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -533,7 +531,7 @@ void EditUpload::setFormatData()
{
RDStation *station=new RDStation(edit_station_box->currentText());
RDExportSettingsDialog *dialog=
new RDExportSettingsDialog(&edit_settings,station,this,"dialog");
new RDExportSettingsDialog(&edit_settings,station,this);
dialog->exec();
delete dialog;
delete station;
@@ -640,6 +638,7 @@ bool EditUpload::CheckFormat()
RDStation *station=new RDStation(edit_station_box->currentText());
switch(edit_settings.format()) {
case RDSettings::Pcm16:
case RDSettings::Pcm24:
case RDSettings::MpegL2:
case RDSettings::MpegL2Wav:
res=true;