diff options
| author | Philip Kaufmann <[email protected]> | 2014-09-08 12:25:52 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-09 11:31:17 +0200 |
| commit | 2c2cc5dac1102c1eb86c7dd825a893ab388abba1 (patch) | |
| tree | 8119c85384c9007547cbf3e15ab8cdc52c2791e1 /src/qt/walletmodel.cpp | |
| parent | netbase: Use .data() instead of .c_str() on binary string (diff) | |
| download | discoin-2c2cc5dac1102c1eb86c7dd825a893ab388abba1.tar.xz discoin-2c2cc5dac1102c1eb86c7dd825a893ab388abba1.zip | |
Remove some unnecessary c_strs() in logging and the GUI
Includes `core: remove unneeded c_str() / Qt: replace c_str() with Qt code`
by P. Kaufmann.
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 530c46cdb..8d2c2e96d 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -622,7 +622,7 @@ void WalletModel::listCoins(std::map<QString, std::vector<COutput> >& mapCoins) CTxDestination address; if(!out.fSpendable || !ExtractDestination(cout.tx->vout[cout.i].scriptPubKey, address)) continue; - mapCoins[CBitcoinAddress(address).ToString().c_str()].push_back(out); + mapCoins[QString::fromStdString(CBitcoinAddress(address).ToString())].push_back(out); } } |