Fixed conflict in 'ChangeLog'

This commit is contained in:
Fred Gleason 2019-01-14 14:42:02 -05:00
commit cbe479223a
2 changed files with 6 additions and 0 deletions

View File

@ -18373,3 +18373,6 @@
* Fixed regression in scheduler that caused events with two
scheduler codes to fail.
* Updated scheduler reports to indicate scheduler codes.
2019-01-14 Patrick Linstruth <patrick@deltecent.com>
* Fixed a bug in RDLogManager that allowed cloned clock lines to pass
hour mark.

View File

@ -350,6 +350,9 @@ void EditClock::cloneData()
eventline.setName(selectedEventLine->name());
eventline.setStartTime(selectedEventLine->startTime().addMSecs(selectedEventLine->length()));
eventline.setLength(selectedEventLine->length());
if(eventline.startTime().addMSecs(eventline.length()).hour()) {
eventline.setLength(0);
}
EditEventLine *edit_eventline=
new EditEventLine(&eventline,edit_clock,-1,this);