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
9fc1cb78
Commit
9fc1cb78
authored
Feb 19, 2010
by
Hugo Beauzee-Luyssen
Browse files
Fix project loading
parent
d73b1440
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Library/Library.cpp
View file @
9fc1cb78
...
...
@@ -115,7 +115,15 @@ Library::addMedia( const QFileInfo& fileInfo, const QString& uuid )
}
}
MetaDataManager
::
getInstance
()
->
computeMediaMetadata
(
media
);
addMedia
(
media
);
}
void
Library
::
addMedia
(
Media
*
media
)
{
m_medias
[
media
->
getUuid
()]
=
media
;
emit
newMediaLoaded
(
media
);
}
void
...
...
@@ -296,10 +304,3 @@ Library::removeClip( const QUuid& mediaId, const QUuid& clipId )
if
(
med
->
clips
()
->
contains
(
clipId
)
)
med
->
removeClip
(
clipId
);
}
void
Library
::
addMedia
(
Media
*
media
)
{
m_medias
[
media
->
getUuid
()]
=
media
;
emit
newMediaLoaded
(
media
);
}
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