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
0b324f81
Commit
0b324f81
authored
8 years ago
by
luyikei
Committed by
Hugo Beauzée-Luyssen
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Clip: Remove fullId
Signed-off-by:
Hugo Beauzée-Luyssen
<
hugo@beauzee.fr
>
parent
d684b17c
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
-13
0 additions, 13 deletions
src/Media/Clip.cpp
src/Media/Clip.h
+0
-9
0 additions, 9 deletions
src/Media/Clip.h
with
0 additions
and
22 deletions
src/Media/Clip.cpp
+
0
−
13
View file @
0b324f81
...
...
@@ -218,19 +218,6 @@ Clip::clear()
m_childs
->
clear
();
}
QString
Clip
::
fullId
()
const
{
const
Clip
*
c
=
this
;
QString
id
=
m_uuid
.
toString
();
while
(
c
->
isRootClip
()
==
false
)
{
c
=
c
->
getParent
();
id
=
c
->
uuid
().
toString
()
+
'/'
+
id
;
}
return
id
;
}
bool
Clip
::
isChild
(
const
QUuid
&
uuid
)
const
{
...
...
This diff is collapsed.
Click to expand it.
src/Media/Clip.h
+
0
−
9
View file @
0b324f81
...
...
@@ -129,15 +129,6 @@ class Clip : public QObject
bool
addSubclip
(
Clip
*
clip
);
/**
* \brief Generates a full Clip id
*
* A full id is the list of all the parent Clip's UUID, separated by '/'
* IE, {uuid1}/{uuid2}/{uuid2}/{current-clip-uuid}
* \return The full Clip id.
*/
QString
fullId
()
const
;
/**
* \return true if the clip is a child of the given clip uuid
*/
...
...
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