Skip to content
Snippets Groups Projects
Commit 0b324f81 authored by luyikei's avatar luyikei Committed by Hugo Beauzée-Luyssen
Browse files

Clip: Remove fullId


Signed-off-by: default avatarHugo Beauzée-Luyssen <hugo@beauzee.fr>
parent d684b17c
No related branches found
No related tags found
No related merge requests found
......@@ -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
{
......
......@@ -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
*/
......
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