Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/KeyOpenDialog.h')
-rw-r--r--src/gui/KeyOpenDialog.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/KeyOpenDialog.h b/src/gui/KeyOpenDialog.h
index 26ab91cfd..1962f80d5 100644
--- a/src/gui/KeyOpenDialog.h
+++ b/src/gui/KeyOpenDialog.h
@@ -32,7 +32,7 @@ class KeyOpenDialog : public QDialog
Q_OBJECT
public:
- explicit KeyOpenDialog(QWidget* parent = 0);
+ explicit KeyOpenDialog(const QString& filename, QWidget* parent = 0);
~KeyOpenDialog();
CompositeKey key();
@@ -47,6 +47,7 @@ private Q_SLOTS:
private:
QScopedPointer<Ui::KeyOpenDialog> m_ui;
CompositeKey m_key;
+ QString m_filename;
Q_DISABLE_COPY(KeyOpenDialog)
};