Skip to content

Commit 4320599

Browse files
committed
Remove remote database code
This should not have been backported to 2.7.x branch
1 parent bb4c957 commit 4320599

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

share/translations/keepassxc_en.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4655,10 +4655,6 @@ You can enable the DuckDuckGo website icon service in the security section of th
46554655
<source>Proton Pass JSON Export</source>
46564656
<translation type="unfinished"></translation>
46574657
</message>
4658-
<message>
4659-
<source>Remote Database (.kdbx)</source>
4660-
<translation type="unfinished"></translation>
4661-
</message>
46624658
</context>
46634659
<context>
46644660
<name>KMessageWidget</name>

src/gui/wizard/ImportWizardPageSelect.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,14 @@ ImportWizardPageSelect::ImportWizardPageSelect(QWidget* parent)
3636
new QListWidgetItem(icons()->icon("onepassword"), tr("1Password Vault (.opvault)"), m_ui->importTypeList);
3737
new QListWidgetItem(icons()->icon("bitwarden"), tr("Bitwarden (.json)"), m_ui->importTypeList);
3838
new QListWidgetItem(icons()->icon("proton"), tr("Proton Pass (.json)"), m_ui->importTypeList);
39-
new QListWidgetItem(icons()->icon("web"), tr("Remote Database (.kdbx)"), m_ui->importTypeList);
4039
new QListWidgetItem(icons()->icon("object-locked"), tr("KeePass 1 Database (.kdb)"), m_ui->importTypeList);
4140

4241
m_ui->importTypeList->item(0)->setData(Qt::UserRole, ImportWizard::IMPORT_CSV);
4342
m_ui->importTypeList->item(1)->setData(Qt::UserRole, ImportWizard::IMPORT_OPUX);
4443
m_ui->importTypeList->item(2)->setData(Qt::UserRole, ImportWizard::IMPORT_OPVAULT);
4544
m_ui->importTypeList->item(3)->setData(Qt::UserRole, ImportWizard::IMPORT_BITWARDEN);
4645
m_ui->importTypeList->item(4)->setData(Qt::UserRole, ImportWizard::IMPORT_PROTONPASS);
47-
m_ui->importTypeList->item(6)->setData(Qt::UserRole, ImportWizard::IMPORT_KEEPASS1);
46+
m_ui->importTypeList->item(5)->setData(Qt::UserRole, ImportWizard::IMPORT_KEEPASS1);
4847

4948
connect(m_ui->importTypeList, &QListWidget::currentItemChanged, this, &ImportWizardPageSelect::itemSelected);
5049
m_ui->importTypeList->setCurrentRow(0);

0 commit comments

Comments
 (0)