From 668737effd601778fba74edec14d22dd5b87457a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 19 Apr 2010 15:16:53 +0000 Subject: CacheStoreMyriad is written, it's pretty much a copy of CacheStoreNids since Nids and Myriad pretty much share an API. However, there seems to be a bug in Myriad when a Myriad file is created and filled with data immediately, the header stream is mis-linking one of the blocks again. --- src/tafcomment.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/tafcomment.cpp') diff --git a/src/tafcomment.cpp b/src/tafcomment.cpp index 4e0da9f..77b7ee4 100644 --- a/src/tafcomment.cpp +++ b/src/tafcomment.cpp @@ -7,6 +7,13 @@ #include "bu/tafcomment.h" +Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) : + TafNode( typeComment ), + sText( rSrc.sText ), + bEOL( rSrc.bEOL ) +{ +} + Bu::TafComment::TafComment( const Bu::FString &sText, bool bEOL ) : TafNode( typeComment ), sText( sText ), -- cgit v1.2.3