fix warnings: 'XX' defined as a struct here but previously declared as a class [-Wmismatched-tags]
This commit is contained in:
parent
8add7822ce
commit
87207a2e08
2 changed files with 4 additions and 2 deletions
|
@ -27,8 +27,9 @@ struct AddressTableEntry
|
||||||
};
|
};
|
||||||
|
|
||||||
// Private implementation
|
// Private implementation
|
||||||
struct AddressTablePriv
|
class AddressTablePriv
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
CWallet *wallet;
|
CWallet *wallet;
|
||||||
QList<AddressTableEntry> cachedAddressTable;
|
QList<AddressTableEntry> cachedAddressTable;
|
||||||
|
|
||||||
|
|
|
@ -45,8 +45,9 @@ struct TxLessThan
|
||||||
};
|
};
|
||||||
|
|
||||||
// Private implementation
|
// Private implementation
|
||||||
struct TransactionTablePriv
|
class TransactionTablePriv
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent):
|
TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent):
|
||||||
wallet(wallet),
|
wallet(wallet),
|
||||||
parent(parent)
|
parent(parent)
|
||||||
|
|
Loading…
Reference in a new issue