mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-28 08:49:42 -05:00
Fix compiler warning on OS X and Windows.
This commit is contained in:
parent
54f44f5267
commit
2edf414aa4
@ -67,6 +67,7 @@ QString FileDialog::getSaveFileName(QWidget* parent, const QString& caption, QSt
|
|||||||
|
|
||||||
QString result;
|
QString result;
|
||||||
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
|
#if defined(Q_OS_MAC) || defined(Q_OS_WIN)
|
||||||
|
Q_UNUSED(defaultExtension);
|
||||||
// the native dialogs on these platforms already append the file extension
|
// the native dialogs on these platforms already append the file extension
|
||||||
result = QFileDialog::getSaveFileName(parent, caption, dir, filter,
|
result = QFileDialog::getSaveFileName(parent, caption, dir, filter,
|
||||||
selectedFilter, options);
|
selectedFilter, options);
|
||||||
|
Loading…
Reference in New Issue
Block a user