[vlmc-devel] commit: MainWorkflow: Fixed project loading. ( Hugo Beauzée-Luyssen )
git at videolan.org
git at videolan.org
Sun Apr 18 20:10:26 CEST 2010
vlmc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Sun Apr 18 20:09:49 2010 +0200| [59dda112617d8f11495344d0154f227514661236] | committer: Hugo Beauzée-Luyssen
MainWorkflow: Fixed project loading.
Fixes #41
> http://git.videolan.org/gitweb.cgi/vlmc.git/?a=commit;h=59dda112617d8f11495344d0154f227514661236
---
src/Workflow/MainWorkflow.cpp | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/Workflow/MainWorkflow.cpp b/src/Workflow/MainWorkflow.cpp
index 6bb8717..325545a 100644
--- a/src/Workflow/MainWorkflow.cpp
+++ b/src/Workflow/MainWorkflow.cpp
@@ -325,9 +325,8 @@ MainWorkflow::loadProject( const QDomElement &root )
Clip* c = Library::getInstance()->clip( uuid );
if ( c != NULL )
{
- //FIXME: ticket http://trac.videolan.org/vlmc/ticket/41
-// addClip( new Clip( c, begin.toLongLong(), end.toLongLong() ),
-// trackId, startFrame.toLongLong(), type, true );
+ ClipHelper *ch = new ClipHelper( c, begin.toLongLong(), end.toLongLong() );
+ addClip( ch, trackId, startFrame.toLongLong(), type, true );
}
clip = clip.nextSibling().toElement();
}
More information about the Vlmc-devel
mailing list