culturered_client/TouchScreen/PageBaseWidget.cpp

11 lines
200 B
C++
Raw Normal View History

2024-09-07 03:34:44 +00:00
#include "PageBaseWidget.h"
#include "MainWindow.h"
PageBaseWidget::PageBaseWidget(MainWindow* parent)
: QWidget(parent)
, m_parentWidget(parent)
{
setAttribute(Qt::WA_StyledBackground, true);
}