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 Feed
//
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: edit_feed.cpp,v 1.9 2012/01/16 11:16:36 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
@@ -579,7 +577,7 @@ void EditFeed::setFormatData()
{
RDStation *station=new RDStation(admin_config->stationName());
RDExportSettingsDialog *dialog=
new RDExportSettingsDialog(&feed_settings,station,this,"dialog");
new RDExportSettingsDialog(&feed_settings,station,this);
dialog->exec();
delete dialog;
delete station;

View File

@@ -2,9 +2,7 @@
//
// Edit a Rivendell Replicator
//
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: edit_replicator.cpp,v 1.2 2010/07/29 19:32:34 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
@@ -311,7 +309,7 @@ void EditReplicator::setFormatData()
{
RDStation *station=new RDStation(admin_config->stationName());
RDExportSettingsDialog *dialog=
new RDExportSettingsDialog(repl_settings,station,this,"dialog");
new RDExportSettingsDialog(repl_settings,station,this);
dialog->exec();
delete dialog;
delete station;