Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLMC
Manage
Activity
Members
Labels
Plan
Issues
26
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLMC
Commits
d633dcc9
Commit
d633dcc9
authored
8 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
Clip: Remove unused isChild method
parent
12df53d2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Media/Clip.cpp
+0
-14
0 additions, 14 deletions
src/Media/Clip.cpp
src/Media/Clip.h
+0
-5
0 additions, 5 deletions
src/Media/Clip.h
with
0 additions
and
19 deletions
src/Media/Clip.cpp
+
0
−
14
View file @
d633dcc9
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
src/Media/Clip.h
+
0
−
5
View file @
d633dcc9
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment