| 5 | #include <QLoggingCategory> |
| 6 | |
| 7 | static Q_LOGGING_CATEGORY(log, "Client.DlgUserPassword") |
| 8 | |
| 9 | static int g_CDlgUserPassword = qRegisterMetaType<CDlgUserPassword>(); |
| 10 | |
| 11 | CDlgUserPassword::CDlgUserPassword(QWidget *parent) |
| 12 | : QDialog(parent) |
| 13 | , ui(new Ui::CDlgUserPassword) |
| 14 | , m_pUser(nullptr) |
| 15 | { |
| 16 | ui->setupUi(this); |
| 17 | setWindowTitle(tr("Set user and password")); |
| 18 | } |
| 19 | |
| 20 | CDlgUserPassword::~CDlgUserPassword() |
| 21 | { |
nothing calls this directly
no test coverage detected