mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
Rename KeyOpenDialog to DatabaseOpenDialog.
This commit is contained in:
parent
a282745efc
commit
9d1838a0fe
7 changed files with 28 additions and 28 deletions
|
@ -27,7 +27,7 @@
|
|||
#include "gui/FileDialog.h"
|
||||
#include "gui/EntryView.h"
|
||||
#include "gui/GroupView.h"
|
||||
#include "gui/KeyOpenDialog.h"
|
||||
#include "gui/DatabaseOpenDialog.h"
|
||||
|
||||
DatabaseManagerStruct::DatabaseManagerStruct()
|
||||
: file(0)
|
||||
|
@ -86,7 +86,7 @@ void DatabaseTabWidget::openDatabase(const QString& fileName)
|
|||
|
||||
void DatabaseTabWidget::openDatabaseDialog()
|
||||
{
|
||||
m_curKeyDialog = new KeyOpenDialog(m_curDbStruct.fileName, m_window);
|
||||
m_curKeyDialog = new DatabaseOpenDialog(m_curDbStruct.fileName, m_window);
|
||||
connect(m_curKeyDialog, SIGNAL(accepted()), SLOT(openDatabaseRead()));
|
||||
connect(m_curKeyDialog, SIGNAL(rejected()), SLOT(openDatabaseCleanup()));
|
||||
m_curKeyDialog->setModal(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue