MCPcopy Create free account
hub / github.com/KangLin/RabbitRemoteControl / CDlgInputPassword

Method CDlgInputPassword

Src/DlgInputPassword.cpp:6–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include "ui_DlgInputPassword.h"
5
6CDlgInputPassword::CDlgInputPassword(bool bShow, bool bStore, QWidget *parent)
7 : QDialog(parent),
8 ui(new Ui::CDlgInputPassword)
9{
10 ui->setupUi(this);
11 ui->pbShow->setEnabled(bShow);
12 if(bStore)
13 setWindowTitle(tr("Store password"));
14 else
15 setWindowTitle(tr("Restore password"));
16 QString szDescript = tr("The encryption key is used to encrypt the password that is saved to the file.");
17 ui->lbDescript->setText(szDescript);
18}
19
20CDlgInputPassword::~CDlgInputPassword()
21{

Callers

nothing calls this directly

Calls 1

setupUiMethod · 0.80

Tested by

no test coverage detected