Merge pull request #2854

a99eef6 always use native directory separators in paths (xiphon)
This commit is contained in:
luigi1111
2020-04-28 15:16:57 -05:00
10 changed files with 35 additions and 42 deletions

View File

@@ -227,7 +227,7 @@ QString Wallet::address(quint32 accountIndex, quint32 addressIndex) const
QString Wallet::path() const
{
return QString::fromStdString(m_walletImpl->path());
return QDir::toNativeSeparators(QString::fromStdString(m_walletImpl->path()));
}
bool Wallet::store(const QString &path)