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

Add missing override qualifiers

parent f02d538b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
......@@ -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;
......
......@@ -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;
......
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