fix warnings: 'XX' defined as a struct here but previously declared as a class [-Wmismatched-tags]

This commit is contained in:
Wladimir J. van der Laan
2012-04-15 12:31:56 +02:00
committed by Luke Dashjr
parent 85e975f379
commit c4381587a6
2 changed files with 4 additions and 2 deletions

View File

@@ -27,8 +27,9 @@ struct AddressTableEntry
};
// Private implementation
struct AddressTablePriv
class AddressTablePriv
{
public:
CWallet *wallet;
QList<AddressTableEntry> cachedAddressTable;

View File

@@ -45,8 +45,9 @@ struct TxLessThan
};
// Private implementation
struct TransactionTablePriv
class TransactionTablePriv
{
public:
TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent):
wallet(wallet),
parent(parent)