mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-11 16:37:26 -04:00
always use native directory separators in paths
This commit is contained in:
@@ -37,14 +37,16 @@
|
||||
class WalletKeysFiles
|
||||
{
|
||||
public:
|
||||
WalletKeysFiles(const qint64 &modified, const QString &path, const quint8 &networkType, const QString &address);
|
||||
WalletKeysFiles(const QFileInfo &info, quint8 networkType, QString address);
|
||||
|
||||
QString fileName() const;
|
||||
qint64 modified() const;
|
||||
QString path() const;
|
||||
quint8 networkType() const;
|
||||
QString address() const;
|
||||
|
||||
private:
|
||||
QString m_fileName;
|
||||
qint64 m_modified;
|
||||
QString m_path;
|
||||
quint8 m_networkType;
|
||||
@@ -56,7 +58,8 @@ class WalletKeysFilesModel : public QAbstractListModel
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum KeysFilesRoles {
|
||||
ModifiedRole = Qt::UserRole + 1,
|
||||
FileNameRole = Qt::UserRole + 1,
|
||||
ModifiedRole,
|
||||
PathRole,
|
||||
NetworkTypeRole,
|
||||
AddressRole
|
||||
|
||||
Reference in New Issue
Block a user