11 lines
200 B
C++
11 lines
200 B
C++
#include "PageBaseWidget.h"
|
|
|
|
#include "MainWindow.h"
|
|
|
|
PageBaseWidget::PageBaseWidget(MainWindow* parent)
|
|
: QWidget(parent)
|
|
, m_parentWidget(parent)
|
|
{
|
|
setAttribute(Qt::WA_StyledBackground, true);
|
|
}
|