VideoDecoder.cpp: Fix invalid C++ extra qualification

Signed-off-by: Jaroslaw Pelczar <[email protected]>
Change-Id: Ide54bce3a762826c33dafa87a1d7fdceac275619
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1786
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Jaroslaw Pelczar
2019-08-30 14:20:22 +00:00
committed by waddlesplash
parent 297af3088c
commit 13b4d9799b
+3 -3
View File
@@ -20,7 +20,7 @@
class VideoView: public BView class VideoView: public BView
{ {
public: public:
VideoView::VideoView(BMediaTrack* track, int32 width, int32 height); VideoView(BMediaTrack* track, int32 width, int32 height);
void Draw(BRect); void Draw(BRect);
void KeyDown(const char*, int32); void KeyDown(const char*, int32);
@@ -62,8 +62,8 @@ VideoView::KeyDown(const char*, int32)
class VideoWindow: public BWindow class VideoWindow: public BWindow
{ {
public: public:
VideoWindow::VideoWindow(const char* videoFile); VideoWindow(const char* videoFile);
VideoWindow::~VideoWindow(); ~VideoWindow();
private: private:
BFile* fFile; BFile* fFile;