]> git.sesse.net Git - nageru/blob - aboutdialog.cpp
Do not use the timing of dropped frames as part of the video master clock.
[nageru] / aboutdialog.cpp
1 #include "aboutdialog.h"
2
3 #include "ui_aboutdialog.h"
4
5 using namespace std;
6
7 AboutDialog::AboutDialog()
8         : ui(new Ui::AboutDialog)
9 {
10         ui->setupUi(this);
11
12         connect(ui->button_box, &QDialogButtonBox::accepted, [this]{ this->close(); });
13 }
14