71a11252e9
Don't store a mapping of the directory to the ui file. The directory will be a unique key, allowing only one ui file to be specified. Use the source file name instead as the mapping key.
15 lines
222 B
C++
15 lines
222 B
C++
|
|
#include "second_widget.h"
|
|
#include "ui_second_widget.h"
|
|
|
|
SecondWidget::SecondWidget(QWidget *parent)
|
|
: QWidget(parent), ui(new Ui::SecondWidget)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
SecondWidget::~SecondWidget()
|
|
{
|
|
delete ui;
|
|
}
|