Skip to content
Snippets Groups Projects
Commit f21841b5 authored by luyikei's avatar luyikei
Browse files

SequenceWorkflow: Couldn't link clips -> Couldn't find clips

parent e2c69b35
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ SequenceWorkflow::linkClips( const QUuid& uuidA, const QUuid& uuidB )
auto clipB = clip( uuidB );
if ( !clipA || !clipB )
{
vlmcCritical() << "Couldn't link clips: " << uuidA << " and " << uuidB;
vlmcCritical() << "Couldn't find clips: " << uuidA << " and " << uuidB;
return false;
}
clipA->setLinkedClipUuid( clipB->uuid() );
......@@ -194,7 +194,7 @@ SequenceWorkflow::unlinkClips( const QUuid& uuidA, const QUuid& uuidB )
auto clipB = clip( uuidB );
if ( !clipA || !clipB )
{
vlmcCritical() << "Couldn't unlink clips: " << uuidA << " and " << uuidB;
vlmcCritical() << "Couldn't find clips: " << uuidA << " and " << uuidB;
return false;
}
clipA->setLinked( false );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment