mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix type of default value for options.
This commit is contained in:
parent
a862f62fe8
commit
0ea64afe92
@ -27,10 +27,10 @@ class FileDialog
|
||||
public:
|
||||
QString getOpenFileName(QWidget* parent = Q_NULLPTR, const QString& caption = QString(),
|
||||
QString dir = QString(), const QString& filter = QString(),
|
||||
QString* selectedFilter = Q_NULLPTR, QFileDialog::Options options = Q_NULLPTR);
|
||||
QString* selectedFilter = Q_NULLPTR, QFileDialog::Options options = 0);
|
||||
QString getSaveFileName(QWidget* parent = Q_NULLPTR, const QString& caption = QString(),
|
||||
QString dir = QString(), const QString& filter = QString(),
|
||||
QString* selectedFilter = Q_NULLPTR, QFileDialog::Options options = Q_NULLPTR);
|
||||
QString* selectedFilter = Q_NULLPTR, QFileDialog::Options options = 0);
|
||||
|
||||
/**
|
||||
* Sets the result of the next get* method call.
|
||||
|
Loading…
Reference in New Issue
Block a user