2024-05-27 Fred Gleason <fredg@paravelsystems.com>

* Changed the 'ELR_LINES.EXT_EVENT_ID' database field from
	'varchar(8)' to	'varchar(32)'.
	* Incremented the database version to 375.
	* Fixed a bug in the 'Edit Service' dialog in rdadmin(1) that made
	it impossible to use a field width of greater than 8 for the
	'Event ID' log import field.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2024-05-27 10:29:16 -04:00
parent 4b16443640
commit db81e5d464
7 changed files with 44 additions and 3 deletions

View File

@@ -333,7 +333,7 @@ ImportFields::ImportFields(RDSvc::ImportSource src,QWidget *parent)
//
event_id_length_spin=new QSpinBox(this);
event_id_length_spin->setGeometry(285,190,50,19);
event_id_length_spin->setRange(0,8);
event_id_length_spin->setRange(0,32);
label=new QLabel(tr("Length:"),this);
label->setGeometry(230,190,50,19);
label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);