mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-08 17:07:26 -04:00
build: fix all warnings, treat warnings as errors
This commit is contained in:
@@ -37,17 +37,15 @@
|
||||
class WalletKeysFiles
|
||||
{
|
||||
public:
|
||||
WalletKeysFiles(const qint64 &modified, const qint64 &created, const QString &path, const quint8 &networkType, const QString &address);
|
||||
WalletKeysFiles(const qint64 &modified, const QString &path, const quint8 &networkType, const QString &address);
|
||||
|
||||
qint64 modified() const;
|
||||
qint64 created() const;
|
||||
QString path() const;
|
||||
quint8 networkType() const;
|
||||
QString address() const;
|
||||
|
||||
private:
|
||||
qint64 m_modified;
|
||||
qint64 m_created;
|
||||
QString m_path;
|
||||
quint8 m_networkType;
|
||||
QString m_address;
|
||||
@@ -61,8 +59,7 @@ public:
|
||||
ModifiedRole = Qt::UserRole + 1,
|
||||
PathRole,
|
||||
NetworkTypeRole,
|
||||
AddressRole,
|
||||
CreatedRole
|
||||
AddressRole
|
||||
};
|
||||
|
||||
WalletKeysFilesModel(WalletManager *walletManager, QObject *parent = 0);
|
||||
|
||||
Reference in New Issue
Block a user