Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
f21841b5
Commit
f21841b5
authored
Aug 12, 2016
by
luyikei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SequenceWorkflow: Couldn't link clips -> Couldn't find clips
parent
e2c69b35
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/Workflow/SequenceWorkflow.cpp
src/Workflow/SequenceWorkflow.cpp
+2
-2
No files found.
src/Workflow/SequenceWorkflow.cpp
View file @
f21841b5
...
...
@@ -177,7 +177,7 @@ SequenceWorkflow::linkClips( const QUuid& uuidA, const QUuid& uuidB )
auto
clipB
=
clip
(
uuidB
);
if
(
!
clipA
||
!
clipB
)
{
vlmcCritical
()
<<
"Couldn't
l
in
k
clips: "
<<
uuidA
<<
" and "
<<
uuidB
;
vlmcCritical
()
<<
"Couldn't
f
in
d
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
unl
in
k
clips: "
<<
uuidA
<<
" and "
<<
uuidB
;
vlmcCritical
()
<<
"Couldn't
f
in
d
clips: "
<<
uuidA
<<
" and "
<<
uuidB
;
return
false
;
}
clipA
->
setLinked
(
false
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment