forked from blue/squawk
17 lines
320 B
C++
17 lines
320 B
C++
#include "pagegeneral.h"
|
|
#include "ui_pagegeneral.h"
|
|
|
|
PageGeneral::PageGeneral(QWidget* parent):
|
|
QWidget(parent),
|
|
m_ui(new Ui::PageGeneral())
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
QSettings settings;
|
|
m_ui->downloadsPathInput->setText(settings.value("downloadsPath").toString());
|
|
}
|
|
|
|
PageGeneral::~PageGeneral()
|
|
{
|
|
}
|