2014-09-03 Fred Gleason <fredg@paravelsystems.com>

* Added an 'RDLiveWire::loadSettings()' method in 'lib/rdlivewire.cpp'
	and 'lib/rdlivewire.h'.
	* Fixed a bug in the 'Configure RDCatch' dialog that caused
	the 'Switcher Matrix' and 'Switcher Output' dropdowns to fail to
	be populated for a LiveWire LWRP Audio switcher device in
	'rdadmin/edit_decks.cpp' and 'rdadmin/edit_decks.h'.
This commit is contained in:
Fred Gleason
2014-09-03 18:58:24 -04:00
parent 35b346fc59
commit c3870ac28f
17 changed files with 319 additions and 199 deletions

View File

@@ -693,7 +693,7 @@ void MainWidget::addData()
}
EnableScroll(false);
int n=AddRecord();
AddRecording *recording=new AddRecording(n,&catch_filter,this,"recording");
AddRecording *recording=new AddRecording(n,&catch_filter,this);
switch((RDRecording::Type)recording->exec()) {
case RDRecording::Recording:
case RDRecording::Playout:
@@ -768,8 +768,7 @@ void MainWidget::editData()
}
switch((RDRecording::Type)item->text(29).toInt()) {
case RDRecording::Recording:
recording=new EditRecording(id,&new_events,&catch_filter,
this,"recording");
recording=new EditRecording(id,&new_events,&catch_filter,this);
if(recording->exec()>=0) {
RefreshLine(item);
new_conn=GetConnection(item->text(24));