all repos — mgba @ 3dfc2bfcb34306cf5108e4b7e998aa3cdffb4389

mGBA Game Boy Advance Emulator

src/platform/qt/VideoView.cpp (view raw)

 1#include "VideoView.h"
 2
 3#ifdef USE_FFMPEG
 4
 5using namespace QGBA;
 6
 7VideoView::VideoView(QWidget* parent)
 8	: QWidget(parent)
 9{
10	m_ui.setupUi(this);
11
12	connect(m_ui.buttonBox, SIGNAL(rejected()), this, SLOT(close()));
13}
14
15#endif