diff options
| author | practicalswift <[email protected]> | 2017-01-12 16:47:51 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-01-13 18:58:15 +0100 |
| commit | 988d3009320f5363438af9070aaea7879efffb40 (patch) | |
| tree | c81eac7c746900803fae365bb2a0094433155e04 /src/qt/bitcoingui.cpp | |
| parent | Merge #8811: rpc: Add support for JSON-RPC named arguments (diff) | |
| download | discoin-988d3009320f5363438af9070aaea7879efffb40.tar.xz discoin-988d3009320f5363438af9070aaea7879efffb40.zip | |
[qt] Rename formateNiceTimeOffset(qint64) to formatNiceTimeOffset(qint64)
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 9d5ff31fb..a3cb376bc 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -817,7 +817,7 @@ void BitcoinGUI::setNumBlocks(int count, const QDateTime& blockDate, double nVer } else { - QString timeBehindText = GUIUtil::formateNiceTimeOffset(secs); + QString timeBehindText = GUIUtil::formatNiceTimeOffset(secs); progressBarLabel->setVisible(true); progressBar->setFormat(tr("%1 behind").arg(timeBehindText)); |