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
parent 8add7822ce
commit 87207a2e08
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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)