mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-28 08:49:42 -05:00
Fix type of default value for options.
This commit is contained in:
parent
a862f62fe8
commit
0ea64afe92
@ -27,10 +27,10 @@ class FileDialog
|
|||||||
public:
|
public:
|
||||||
QString getOpenFileName(QWidget* parent = Q_NULLPTR, const QString& caption = QString(),
|
QString getOpenFileName(QWidget* parent = Q_NULLPTR, const QString& caption = QString(),
|
||||||
QString dir = QString(), const QString& filter = 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 getSaveFileName(QWidget* parent = Q_NULLPTR, const QString& caption = QString(),
|
||||||
QString dir = QString(), const QString& filter = 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.
|
* Sets the result of the next get* method call.
|
||||||
|
Loading…
Reference in New Issue
Block a user