qt/ledset/gqt.cpp

5 lines
209 B
C++
Raw Normal View History

2022-08-25 18:43:03 +08:00
#include "gqt.h"
Label::Label(QWidget *parent, Qt::WindowFlags f) : QLabel(parent, f), Wgt(this){}
Label::Label(const QString &text, QWidget *parent, Qt::WindowFlags f) : QLabel(text, parent, f), Wgt(this){}