Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
0cdd5382
Commit
0cdd5382
authored
Oct 30, 2016
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MainWorkflow: Remove unused methods
parent
9adcf337
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
29 deletions
+0
-29
src/Workflow/MainWorkflow.cpp
src/Workflow/MainWorkflow.cpp
+0
-13
src/Workflow/MainWorkflow.h
src/Workflow/MainWorkflow.h
+0
-16
No files found.
src/Workflow/MainWorkflow.cpp
View file @
0cdd5382
...
...
@@ -109,12 +109,6 @@ MainWorkflow::unmuteClip( const QUuid& uuid, unsigned int trackId )
// TODO
}
std
::
shared_ptr
<
Clip
>
MainWorkflow
::
clip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
)
{
// TODO
}
void
MainWorkflow
::
trigger
(
Commands
::
Generic
*
command
)
{
...
...
@@ -193,13 +187,6 @@ MainWorkflow::getTrackCount() const
return
m_trackCount
;
}
bool
MainWorkflow
::
contains
(
const
QUuid
&
uuid
)
const
{
auto
clip
=
m_sequenceWorkflow
->
clip
(
uuid
);
return
!
clip
==
false
;
}
quint32
MainWorkflow
::
trackCount
()
const
{
...
...
src/Workflow/MainWorkflow.h
View file @
0cdd5382
...
...
@@ -114,14 +114,6 @@ class MainWorkflow : public QObject
*/
int
getTrackCount
()
const
;
/**
* \return true if the current workflow contains the clip which the uuid was
* passed. Falsed otherwise.
*
* \param uuid The Clip uuid, not the Clip's.
*/
bool
contains
(
const
QUuid
&
uuid
)
const
;
/**
* \brief Return the number of track for each track type.
*/
...
...
@@ -173,14 +165,6 @@ class MainWorkflow : public QObject
private:
/**
* \param uuid : The clip's uuid.
* \param trackId : the track id
* \param trackType : the track type (audio or video)
* \returns The clip that matches the given UUID, or nullptr.
*/
std
::
shared_ptr
<
Clip
>
clip
(
const
QUuid
&
uuid
,
unsigned
int
trackId
);
void
trigger
(
Commands
::
Generic
*
command
);
void
preSave
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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