mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 21:40:52 -05:00 
			
		
		
		
	This merge brings the WSPR feature development into the main line ready for release in a future v1.6 release. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5424 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "about.h"
 | 
						|
 | 
						|
#include <QCoreApplication>
 | 
						|
#include <QString>
 | 
						|
 | 
						|
#include "revision_utils.hpp"
 | 
						|
 | 
						|
#include "ui_about.h"
 | 
						|
#include "moc_about.cpp"
 | 
						|
 | 
						|
CAboutDlg::CAboutDlg(QWidget *parent) :
 | 
						|
  QDialog(parent),
 | 
						|
  ui(new Ui::CAboutDlg)
 | 
						|
{
 | 
						|
  ui->setupUi(this);
 | 
						|
 | 
						|
  ui->labelTxt->setText ("<html><h2>"
 | 
						|
                         + QString {"WSJT-X v"
 | 
						|
                             + QCoreApplication::applicationVersion ()
 | 
						|
                             + " " + revision ()}.simplified ()
 | 
						|
                         + "</h2>\n\n"
 | 
						|
                         "WSJT-X implements digital modes JT9 and JT65 for <br>"
 | 
						|
                         "Amateur Radio communication.  <br><br>"
 | 
						|
                         "© 2001-2015 by Joe Taylor, K1JT, with grateful <br>"
 | 
						|
                         "acknowledgment for contributions from AC6SL, AE4JY, <br>"
 | 
						|
                         "DJ0OT, G4KLA, G4WJS, K3WYC, K9AN, KA6MAL, KA9Q, <br>"
 | 
						|
                         "KB1ZMX, KD6EKQ, KI7MT, KK1D, ND0B, PY2SDR, <br>"
 | 
						|
                         "VK3ACF, VK4BDJ, W4TI, W4TV, and W9MDB.<br>");
 | 
						|
}
 | 
						|
 | 
						|
CAboutDlg::~CAboutDlg()
 | 
						|
{
 | 
						|
}
 |