2018-05-08 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdlogmanager(1) that caused the initial transition
	type specified in the 'IMPORT' section of the 'Editing Event' dialog
	to be applied to both the parent log link and the first imported
	event when the 'PRE-IMPORT CARTS' list was empty and no Timed Start
	was enabled.
This commit is contained in:
Fred Gleason 2018-05-08 18:10:33 +00:00
parent 3ff1fb5419
commit 84147dfd90
2 changed files with 18 additions and 2 deletions

View File

@ -16647,3 +16647,9 @@
2018-05-05 Fred Gleason <fredg@paravelsystems.com>
* Updated 'NEWS'.
* Incremented the package version to 2.19.2int00.
2018-05-08 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) that caused the initial transition
type specified in the 'IMPORT' section of the 'Editing Event' dialog
to be applied to both the parent log link and the first imported
event when the 'PRE-IMPORT CARTS' list was empty and no Timed Start
was enabled.

View File

@ -928,6 +928,14 @@ bool RDEventLine::linkLog(RDLogEvent *e,const QString &svcname,
delete logline;
logline=NULL;
//
// Clear Leading Event Values
//
time_type=RDLogLine::Relative;
trans_type=event_default_transtype;
// time=time.addMSecs(length);
grace_time=-1;
//
// Calculate Event Time Boundaries
//
@ -1104,15 +1112,17 @@ bool RDEventLine::linkLog(RDLogEvent *e,const QString &svcname,
logline->setCartNumber(q->value(0).toUInt());
}
}
/*
//
// Clear Leading Event Values
//
time_type=RDLogLine::Relative;
trans_type=event_default_transtype;
*/
time=time.addMSecs(length);
/*
grace_time=-1;
*/
}
delete q;