1
0
Fork 0
forked from blue/squawk

some more thoughts about settings widgets

This commit is contained in:
Blue 2022-01-19 23:46:42 +03:00
parent 841e526e59
commit a8a7ce2538
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
12 changed files with 248 additions and 45 deletions

View file

@ -0,0 +1,13 @@
#include "pagegeneral.h"
#include "ui_pagegeneral.h"
PageGeneral::PageGeneral(QWidget* parent):
QWidget(parent),
m_ui(new Ui::PageGeneral())
{
m_ui->setupUi(this);
}
PageGeneral::~PageGeneral()
{
}