aboutsummaryrefslogtreecommitdiff
path: root/src/dialogs/certificateselectiondialog.cpp
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-28 16:30:52 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-28 16:30:52 +0200
commit6edd9e7a12a3827fb6aac62a88be01085e41e176 (patch)
tree4513475c7efaea92a154ff20e970ed3d4b475b7c /src/dialogs/certificateselectiondialog.cpp
parenta53e490d2e96d22a24293019921af26e00f2bf7a (diff)
downloadkristall-6edd9e7a12a3827fb6aac62a88be01085e41e176.tar.gz
Huge refacoring of the settings stuff. Provides automated migration between old and new configuration file stuff. Themes are now just files in a folder instead of encoded data in the config file.
Diffstat (limited to 'src/dialogs/certificateselectiondialog.cpp')
-rw-r--r--src/dialogs/certificateselectiondialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dialogs/certificateselectiondialog.cpp b/src/dialogs/certificateselectiondialog.cpp
index f4dab38..4caf988 100644
--- a/src/dialogs/certificateselectiondialog.cpp
+++ b/src/dialogs/certificateselectiondialog.cpp
@@ -16,7 +16,7 @@ CertificateSelectionDialog::CertificateSelectionDialog(QWidget *parent) :
ui->setupUi(this);
this->ui->server_request->setVisible(false);
- this->ui->certificates->setModel(&global_identities);
+ this->ui->certificates->setModel(&kristall::identities);
this->ui->certificates->expandAll();
connect(this->ui->certificates->selectionModel(), &QItemSelectionModel::currentChanged, this, &CertificateSelectionDialog::on_currentChanged);
@@ -86,7 +86,7 @@ void CertificateSelectionDialog::on_currentChanged(const QModelIndex &current, c
{
Q_UNUSED(current)
Q_UNUSED(previous)
- auto id = global_identities.getIdentity(current);
+ auto id = kristall::identities.getIdentity(current);
this->ui->use_selected_cert->setEnabled(id.isValid());
}
@@ -103,7 +103,7 @@ void CertificateSelectionDialog::on_create_new_cert_clicked()
return;
id.is_persistent = true;
- global_identities.addCertificate(
+ kristall::identities.addCertificate(
dialog.groupName(),
id);
}
@@ -111,7 +111,7 @@ void CertificateSelectionDialog::on_create_new_cert_clicked()
void CertificateSelectionDialog::on_use_selected_cert_clicked()
{
auto sel = this->ui->certificates->selectionModel()->currentIndex();
- this->cryto_identity = global_identities.getIdentity(sel);
+ this->cryto_identity = kristall::identities.getIdentity(sel);
if(this->cryto_identity.isValid()) {
this->accept();
} else {
@@ -121,7 +121,7 @@ void CertificateSelectionDialog::on_use_selected_cert_clicked()
void CertificateSelectionDialog::on_certificates_doubleClicked(const QModelIndex &index)
{
- this->cryto_identity = global_identities.getIdentity(index);
+ this->cryto_identity = kristall::identities.getIdentity(index);
if(this->cryto_identity.isValid()) {
this->accept();
} else {