diff options
| author | Jeff Garzik <[email protected]> | 2012-04-15 11:39:15 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-04-15 11:39:15 -0700 |
| commit | 5a701eb7ea16b87b56263996ee8e98ec89e2a3d8 (patch) | |
| tree | fe8a60dc3eeb26e62cf4531a98b29ed99bee90e9 /src/qt/transactiontablemodel.cpp | |
| parent | Merge pull request #1084 from dooglus/validate_secret (diff) | |
| parent | fix warnings: suggest explicit braces to avoid ambiguous 'else' [-Wparentheses] (diff) | |
| download | discoin-5a701eb7ea16b87b56263996ee8e98ec89e2a3d8.tar.xz discoin-5a701eb7ea16b87b56263996ee8e98ec89e2a3d8.zip | |
Merge pull request #1104 from laanwj/2012_04_clang
Enable and fix most compilation warnings
Diffstat (limited to 'src/qt/transactiontablemodel.cpp')
| -rw-r--r-- | src/qt/transactiontablemodel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index aa11df979..41c9db112 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -45,8 +45,9 @@ struct TxLessThan }; // Private implementation -struct TransactionTablePriv +class TransactionTablePriv { +public: TransactionTablePriv(CWallet *wallet, TransactionTableModel *parent): wallet(wallet), parent(parent) |