mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
5f28b745a2
_ /)
mo / )
|/)\)
/\_
\__|=
( )
__)(__
_____/ \\_____
| _ ___ _ ||
| | \ | | \ ||
| | | | | | ||
| |_/ | |_/ ||
| | \ | | ||
| | \ | | ||
| | \. _|_. | . ||
| ||
|repository history||
| ||
* | * ** * ** |** **
\))ejm97/.,(//,,..,,\||(,,.,\\,.((//
17 lines
337 B
C++
17 lines
337 B
C++
#include "AboutDialog.h"
|
|
#include <QApplication>
|
|
#include <QLabel>
|
|
#include <QString>
|
|
#include "ui_AboutDialog.h"
|
|
|
|
AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->version->setText("Version v" + qApp->applicationVersion());
|
|
}
|
|
|
|
AboutDialog::~AboutDialog()
|
|
{
|
|
delete ui;
|
|
}
|