mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
GUIUtil: make getSaveFileName() use native OS path separators
This commit is contained in:
parent
e213005177
commit
444fd65f66
@ -223,8 +223,7 @@ void copyEntryData(QAbstractItemView *view, int column, int role)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QString getSaveFileName(QWidget *parent, const QString &caption,
|
QString getSaveFileName(QWidget *parent, const QString &caption, const QString &dir,
|
||||||
const QString &dir,
|
|
||||||
const QString &filter,
|
const QString &filter,
|
||||||
QString *selectedSuffixOut)
|
QString *selectedSuffixOut)
|
||||||
{
|
{
|
||||||
@ -242,7 +241,8 @@ QString getSaveFileName(QWidget *parent, const QString &caption,
|
|||||||
{
|
{
|
||||||
myDir = dir;
|
myDir = dir;
|
||||||
}
|
}
|
||||||
QString result = QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter);
|
/* Directly convert path to native OS path separators */
|
||||||
|
QString result = QDir::toNativeSeparators(QFileDialog::getSaveFileName(parent, caption, myDir, filter, &selectedFilter));
|
||||||
|
|
||||||
/* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */
|
/* Extract first suffix from filter pattern "Description (*.foo)" or "Description (*.foo *.bar ...) */
|
||||||
QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]");
|
QRegExp filter_re(".* \\(\\*\\.(.*)[ \\)]");
|
||||||
|
Loading…
Reference in New Issue
Block a user