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/modaloverlay.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/modaloverlay.cpp')
| -rw-r--r-- | src/qt/modaloverlay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/modaloverlay.cpp b/src/qt/modaloverlay.cpp index 3e8282e63..89fb15995 100644 --- a/src/qt/modaloverlay.cpp +++ b/src/qt/modaloverlay.cpp @@ -105,7 +105,7 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri ui->progressIncreasePerH->setText(QString::number(progressPerHour*100, 'f', 2)+"%"); // show expected remaining time - ui->expectedTimeLeft->setText(GUIUtil::formateNiceTimeOffset(remainingMSecs/1000.0)); + ui->expectedTimeLeft->setText(GUIUtil::formatNiceTimeOffset(remainingMSecs/1000.0)); static const int MAX_SAMPLES = 5000; if (blockProcessTime.count() > MAX_SAMPLES) |