2019-10-01 Fred Gleason <fredg@paravelsystems.com>

* Refactored dialogs in the convenience library to use the
	'RDDialog' and 'RDWidget' base classes.
This commit is contained in:
Fred Gleason
2019-10-01 15:10:29 -04:00
parent b910af1bda
commit 8ca15c773d
75 changed files with 734 additions and 1052 deletions

View File

@@ -2,7 +2,7 @@
//
// Get an Agreggate Tuning Hours (ATH) Figure.
//
// (C) Copyright 2006,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2006-2019 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -21,15 +21,15 @@
#ifndef GET_ATH_H
#define GET_ATH_H
#include <qdialog.h>
#include <qlineedit.h>
class RDGetAth : public QDialog
#include <rddialog.h>
class RDGetAth : public RDDialog
{
Q_OBJECT
public:
RDGetAth(double *ath,QWidget *parent=0);
~RDGetAth();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;