Skip to content

Commit 9c1ca0c

Browse files
committed
Clip: Mark methods as overrides
1 parent 2f6d88e commit 9c1ca0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Clip.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ namespace openshot {
186186
void AddEffect(openshot::EffectBase* effect);
187187

188188
/// Close the internal reader
189-
void Close();
189+
void Close() override;
190190

191191
/// Return the list of effects on the timeline
192192
std::list<openshot::EffectBase*> Effects() { return effects; };
@@ -199,7 +199,7 @@ namespace openshot {
199199
///
200200
/// @returns A new openshot::Frame object
201201
/// @param frame_number The frame number (starting at 1) of the clip or effect on the timeline.
202-
std::shared_ptr<openshot::Frame> GetFrame(int64_t frame_number);
202+
std::shared_ptr<openshot::Frame> GetFrame(int64_t frame_number) override;
203203

204204
/// @brief Get an openshot::Frame object for a specific frame number of this timeline. The image size and number
205205
/// of samples can be customized to match the Timeline, or any custom output. Extra samples will be moved to the

0 commit comments

Comments
 (0)