mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-15 17:11:33 +01:00
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the 'Software Authority' Switcher/GPIO driver that made it impossible to add switcher events in rdcatch(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -23200,3 +23200,6 @@
|
|||||||
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
|
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdadmin(1) that permitted immutable switcher endpoint
|
* Fixed a bug in rdadmin(1) that permitted immutable switcher endpoint
|
||||||
names to be edited.
|
names to be edited.
|
||||||
|
2022-07-27 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in the 'Software Authority' Switcher/GPIO driver
|
||||||
|
that made it impossible to add switcher events in rdcatch(1).
|
||||||
|
|||||||
@@ -27,7 +27,6 @@
|
|||||||
|
|
||||||
#include "edit_switchevent.h"
|
#include "edit_switchevent.h"
|
||||||
|
|
||||||
//EditSwitchEvent::EditSwitchEvent(int id,std::vector<int> *adds,QWidget *parent)
|
|
||||||
EditSwitchEvent::EditSwitchEvent(QWidget *parent)
|
EditSwitchEvent::EditSwitchEvent(QWidget *parent)
|
||||||
: RDDialog(parent)
|
: RDDialog(parent)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -421,8 +421,8 @@ void SoftwareAuthority::DispatchCommand()
|
|||||||
QString::asprintf("`NUMBER`=%d",f0[0].toInt());
|
QString::asprintf("`NUMBER`=%d",f0[0].toInt());
|
||||||
swa_next_endpt++;
|
swa_next_endpt++;
|
||||||
|
|
||||||
if(f0[0].toInt()>swa_inputs) {
|
if(f0[0].toInt()>swa_outputs) {
|
||||||
swa_inputs=f0[0].toInt();
|
swa_outputs=f0[0].toInt();
|
||||||
}
|
}
|
||||||
RDSqlQuery::apply(sql);
|
RDSqlQuery::apply(sql);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user