FixedAdding #1

Merged
danylo_nevidomiy merged 33 commits from FixedAdding into main 2025-02-12 21:46:46 +03:00
2 changed files with 9 additions and 2 deletions
Showing only changes of commit c64ff7e979 - Show all commits

View File

@ -28,7 +28,7 @@ AddDialog::~AddDialog()
void AddDialog::on_pushButton_clicked()
{
/*
QVector<char> BigLetters= {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
QVector<char> SmallLetters = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
QVector<char> Numbers = {'1','2','3','4','5','6','7','8','9','0'};
@ -59,6 +59,11 @@ void AddDialog::on_pushButton_clicked()
ui->createPassword->setText(npasw);
*/
genpass.show();
}

View File

@ -6,7 +6,7 @@
#include "record.h"
#include "manager.h"
#include"genpass.h"
namespace Ui {
class AddDialog;
@ -33,6 +33,8 @@ private slots:
private:
Ui::AddDialog *ui;
GenPass genpass;
};