mirror of https://github.com/bsnes-emu/bsnes.git
8 lines
157 B
C++
8 lines
157 B
C++
|
void pLabel::setText(const string &text) {
|
||
|
qtLabel->setText(QString::fromUtf8(text));
|
||
|
}
|
||
|
|
||
|
void pLabel::constructor() {
|
||
|
qtWidget = qtLabel = new QLabel;
|
||
|
}
|