diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-31 10:01:30 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-31 10:06:49 +0200 |
| commit | 9848d4297be9818578c8e0cac6e614e2a8a33a4d (patch) | |
| tree | 2943d7fcf9ce3df2c31c6e001812b5d2a6500713 /src/qt/walletmodel.cpp | |
| parent | Merge pull request #6224 (diff) | |
| parent | qt: Introduce PlatformStyle (diff) | |
| download | discoin-9848d4297be9818578c8e0cac6e614e2a8a33a4d.tar.xz discoin-9848d4297be9818578c8e0cac6e614e2a8a33a4d.zip | |
Merge pull request #6487
eec7757 qt: Introduce PlatformStyle (Wladimir J. van der Laan)
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 7820047b6..f58085373 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -27,7 +27,7 @@ #include <boost/foreach.hpp> -WalletModel::WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *parent) : +WalletModel::WalletModel(const PlatformStyle *platformStyle, CWallet *wallet, OptionsModel *optionsModel, QObject *parent) : QObject(parent), wallet(wallet), optionsModel(optionsModel), addressTableModel(0), transactionTableModel(0), recentRequestsTableModel(0), @@ -39,7 +39,7 @@ WalletModel::WalletModel(CWallet *wallet, OptionsModel *optionsModel, QObject *p fForceCheckBalanceChanged = false; addressTableModel = new AddressTableModel(wallet, this); - transactionTableModel = new TransactionTableModel(wallet, this); + transactionTableModel = new TransactionTableModel(platformStyle, wallet, this); recentRequestsTableModel = new RecentRequestsTableModel(wallet, this); // This timer will be fired repeatedly to update the balance |