#include "about.h" #include "revision_utils.hpp" #include "ui_about.h" CAboutDlg::CAboutDlg(QWidget *parent) : QDialog(parent), ui(new Ui::CAboutDlg) { ui->setupUi(this); ui->labelTxt->setText("

" + QString {"QMAP v" + QCoreApplication::applicationVersion () + " " + revision ()}.simplified () + "


" "QMAP is a wideband receiver for the Q65 protocol, intnded
" "primarily for amateur radio EME communication. It works
" "in close cooperation with WSJT-X, versions 2.7 and later.

" "Copyright 2001-2023 by Joe Taylor, K1JT. Additional
" "acknowledgments are contained in the source code."); } CAboutDlg::~CAboutDlg() { delete ui; }