19 lines
350 B
C++
19 lines
350 B
C++
|
#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();
|
|||
|
}
|