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
e5c45899
Commit
e5c45899
authored
8 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
Add missing override qualifiers
parent
f02d538b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Backend/MLT/MLTInput.h
+1
-1
1 addition, 1 deletion
src/Backend/MLT/MLTInput.h
src/Backend/MLT/MLTTrack.h
+1
-1
1 addition, 1 deletion
src/Backend/MLT/MLTTrack.h
src/Media/Clip.h
+1
-1
1 addition, 1 deletion
src/Media/Clip.h
with
3 additions
and
3 deletions
src/Backend/MLT/MLTInput.h
+
1
−
1
View file @
e5c45899
...
...
@@ -54,7 +54,7 @@ class MLTInput : virtual public IInput, public MLTService
static
void
onPropertyChanged
(
void
*
owner
,
MLTInput
*
self
,
const
char
*
id
);
virtual
void
setCallback
(
IInputEventCb
*
callback
);
virtual
void
setCallback
(
IInputEventCb
*
callback
)
override
;
virtual
const
char
*
path
()
const
override
;
virtual
int64_t
begin
()
const
override
;
...
...
This diff is collapsed.
Click to expand it.
src/Backend/MLT/MLTTrack.h
+
1
−
1
View file @
e5c45899
...
...
@@ -60,7 +60,7 @@ class MLTTrack : public ITrack, public MLTInput
virtual
bool
resizeClip
(
int
clip
,
int64_t
begin
,
int64_t
end
)
override
;
virtual
int
clipIndexAt
(
int64_t
position
)
override
;
virtual
int
count
()
const
override
;
virtual
void
clear
();
virtual
void
clear
()
override
;
virtual
void
setMute
(
bool
muted
)
override
;
virtual
void
setVideoEnabled
(
bool
enabled
)
override
;
...
...
This diff is collapsed.
Click to expand it.
src/Media/Clip.h
+
1
−
1
View file @
e5c45899
...
...
@@ -98,7 +98,7 @@ class Clip : public Workflow::Helper
\return The Clip's Uuid as a QUuid
*/
const
QUuid
&
uuid
()
const
;
const
QUuid
&
uuid
()
const
override
;
void
setUuid
(
const
QUuid
&
uuid
);
virtual
qint64
begin
()
const
override
;
...
...
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