WSJT-X/about.h
Bill Somerville 42844e3104 Uniform appearance of window titles.
Svn revision  number displayed  in about  window and  sent PSKReporter
only.

About box text centred and uses Copyright symbol.

Window   title   on  "Log   QSO"   dialog   includes  rig-name   where
multi-instance support  is enabled. This  is necessary since  the "Log
QSO" dialog is not modal.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3960 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2014-03-30 01:31:40 +00:00

24 lines
315 B
C++

#ifndef ABOUTDLG_H
#define ABOUTDLG_H
#include <QDialog>
#include <QScopedPointer>
namespace Ui {
class CAboutDlg;
}
class CAboutDlg : public QDialog
{
Q_OBJECT;
public:
explicit CAboutDlg(QWidget *parent = nullptr);
~CAboutDlg ();
private:
QScopedPointer<Ui::CAboutDlg> ui;
};
#endif // ABOUTDLG_H