mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
11 lines
256 B
C++
11 lines
256 B
C++
#include "backendinitdialog.h"
|
|
|
|
#include <QLabel>
|
|
#include <QVBoxLayout>
|
|
|
|
BackendInitDialog::BackendInitDialog(QWidget *parent) : QDialog(parent)
|
|
{
|
|
QVBoxLayout *l = new QVBoxLayout(this);
|
|
|
|
l->addWidget(new QLabel(tr("Initializing backend...")));
|
|
}
|