You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
19 lines
350 B
#include "frmcolorwidget.h"
|
|
#include "ui_frmcolorwidget.h"
|
|
#include "colorwidget.h"
|
|
|
|
frmColorWidget::frmColorWidget(QWidget *parent) : QWidget(parent), ui(new Ui::frmColorWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
frmColorWidget::~frmColorWidget()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void frmColorWidget::on_pushButton_clicked()
|
|
{
|
|
ColorWidget::Instance()->show();
|
|
}
|