Another stage in the renaming process, Q65W -> QMAP. It this all?

This commit is contained in:
Joe Taylor
2023-01-25 10:07:07 -05:00
parent a87c308823
commit 6979a56d5d
108 changed files with 5 additions and 5 deletions
+22
View File
@@ -0,0 +1,22 @@
#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("<html><h2>" + QString {"QMAP v"
+ QCoreApplication::applicationVersion ()
+ " " + revision ()}.simplified () + "</h2><br />"
"QMAP is a wideband receiver for the Q65 protocol, <br />"
"intended primarily for amateur radio EME communication. <br /><br />"
"Copyright 2001-2023 by Joe Taylor, K1JT. Additional <br />"
"acknowledgments are contained in the source code.");
}
CAboutDlg::~CAboutDlg()
{
delete ui;
}