mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
17 lines
267 B
C++
17 lines
267 B
C++
#include "WindowHelper.h"
|
|
|
|
WindowHelper::WindowHelper(QObject *parent)
|
|
: QObject{parent}
|
|
{
|
|
|
|
}
|
|
|
|
void WindowHelper::setTitle(const QString& text){
|
|
window->setTitle(text);
|
|
}
|
|
|
|
|
|
void WindowHelper::initWindow(FramelessView* window){
|
|
this->window = window;
|
|
}
|