| 23 | #include "MainWindow.h" |
| 24 | |
| 25 | AboutWindow::AboutWindow(QWidget *parent) : |
| 26 | QDialog(parent), |
| 27 | ui(new Ui::AboutWindow) |
| 28 | { |
| 29 | ui->setupUi(this); |
| 30 | |
| 31 | QString version("<b>Version: </b> %1, <b>Build Date: </b> %2 %3, <b>IPL API: </b>%4, <b>OpenCV: </b>%5.%6, <b>Qt: </b>%7"); |
| 32 | |
| 33 | ui->labelVersion->setText(version.arg(IMAGEPLAY_VERSION).arg(IMAGEPLAY_BUILDDATE).arg(IMAGEPLAY_BUILDTIME).arg(IPL_VERSION).arg(CV_MAJOR_VERSION).arg(CV_MINOR_VERSION).arg(QT_VERSION_STR)); |
| 34 | } |
| 35 | |
| 36 | AboutWindow::~AboutWindow() |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected