Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
8ab483a7
Commit
8ab483a7
authored
Aug 19, 2016
by
Hugo Beauzée-Luyssen
Browse files
Clip: Remove unused isChild method
parent
7dcf5b02
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/Media/Clip.cpp
View file @
8ab483a7
...
...
@@ -252,20 +252,6 @@ Clip::clear()
m_subclips
.
clear
();
}
bool
Clip
::
isChild
(
const
QUuid
&
uuid
)
const
{
Clip
*
c
=
m_parent
;
while
(
c
!=
nullptr
)
{
if
(
c
->
m_uuid
==
uuid
)
return
true
;
c
=
c
->
m_parent
;
}
return
false
;
}
QVariant
Clip
::
toVariant
()
const
{
...
...
src/Media/Clip.h
View file @
8ab483a7
...
...
@@ -130,11 +130,6 @@ class Clip : public Workflow::Helper
bool
addSubclip
(
Clip
*
clip
);
/**
* \return true if the clip is a child of the given clip uuid
*/
bool
isChild
(
const
QUuid
&
uuid
)
const
;
QVariant
toVariant
()
const
;
QVariant
toVariantFull
()
const
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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