mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-05 00:41:19 -05:00
23 lines
419 B
C++
23 lines
419 B
C++
#include "colorhighlighting.h"
|
|
#include "ui_colorhighlighting.h"
|
|
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
|
|
ColorHighlighting::ColorHighlighting(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::ColorHighlighting)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
ColorHighlighting::~ColorHighlighting()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void ColorHighlighting::colorHighlightlingSetup()
|
|
{
|
|
setWindowTitle(QApplication::applicationName() + " - Colors");
|
|
}
|