Skip to content

Commit

Permalink
VideoRenderWidget: missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Sep 13, 2020
1 parent 0974637 commit 92d33a1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions include/Qt/VideoRenderWidget.h
Expand Up @@ -31,11 +31,13 @@
#ifndef OPENSHOT_VIDEO_RENDERER_WIDGET_H
#define OPENSHOT_VIDEO_RENDERER_WIDGET_H

#include <QtWidgets/QWidget>
#include <QtGui/QImage>
#include "../Fraction.h"
#include "VideoRenderer.h"

#include <QWidget>
#include <QImage>
#include <QPaintEvent>
#include <QRect>

class VideoRenderWidget : public QWidget
{
Expand Down
8 changes: 7 additions & 1 deletion src/Qt/VideoRenderWidget.cpp
Expand Up @@ -29,7 +29,13 @@
*/

#include "../../include/Qt/VideoRenderWidget.h"
#include <QtGui/QPaintEvent>
#include <QWidget>
#include <QImage>
#include <QPainter>
#include <QPaintEvent>
#include <QSizePolicy>
#include <QPalette>


VideoRenderWidget::VideoRenderWidget(QWidget *parent)
: QWidget(parent), renderer(new VideoRenderer(this))
Expand Down

0 comments on commit 92d33a1

Please sign in to comment.