FluentUI/src/WindowHelper.cpp
朱子楚\zhuzi f1b52fc5ee update
2023-02-27 23:04:52 +08:00

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;
}