From 8a048e6ef2f94b51a6a512007c4e26d615ad2afd Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Wed, 7 May 2008 11:54:41 -0500 Subject: [PATCH] Oops. Forgot one. --- Timeline/Sequence_Point.C | 2 +- Timeline/Sequence_Widget.H | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Timeline/Sequence_Point.C b/Timeline/Sequence_Point.C index b3c1078..56e5c34 100644 --- a/Timeline/Sequence_Point.C +++ b/Timeline/Sequence_Point.C @@ -23,7 +23,7 @@ void Sequence_Point::get ( Log_Entry &e ) const { e.add( ":x", _r->offset ); - e.add( ":t", _sequence ); + e.add( ":sequence", _sequence ); } void diff --git a/Timeline/Sequence_Widget.H b/Timeline/Sequence_Widget.H index f19a8bb..54b3bd2 100644 --- a/Timeline/Sequence_Widget.H +++ b/Timeline/Sequence_Widget.H @@ -316,7 +316,7 @@ public: virtual void selection_color ( Fl_Color v ) { _selection_color = v; } Sequence * sequence ( void ) const { return _sequence; } - void sequence ( Sequence *t ) { _sequence = t; } + void sequence ( Sequence *t ) { _sequence = t; } nframes_t offset ( void ) const { return _r->offset; } // void offset ( nframes_t o ) { _r->offset = o; }