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

* Renamed the 'RDFontSet' class to 'RDFontEngine'.
	* Modified the font calculation algorithm in
	'RDFontEngine::MakeFonts()' to use fixed defaults.
This commit is contained in:
Fred Gleason
2019-10-08 09:54:36 -04:00
parent 8be7931c23
commit 13fe76b469
17 changed files with 81 additions and 65 deletions

View File

@@ -21,14 +21,14 @@
#include "rdwidget.h"
RDWidget::RDWidget(QWidget *parent,Qt::WindowFlags f)
: QWidget(parent,f), RDFontSet(font())
: QWidget(parent,f), RDFontEngine(font())
{
setFont(defaultFont());
}
RDWidget::RDWidget(RDConfig *config,QWidget *parent,Qt::WindowFlags f)
: QWidget(parent,f), RDFontSet(font(),config)
: QWidget(parent,f), RDFontEngine(font(),config)
{
setFont(defaultFont());
}