summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-02-23 14:19:50 -0800
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-02-24 13:38:14 -0800
commit65c06e62707a9982dedf39a88904bce04df1e227 (patch)
treed38092896a51e1ad3efdb03c8e198d5219c144b9 /bin
parent5a6cee0dd0f90f8a3bfa79ebde2a4896b9eeaeea (diff)
downloadqtlocation-mapboxgl-65c06e62707a9982dedf39a88904bce04df1e227.tar.gz
[core] status.requiredResourceCountIsIndeterminate ⇢ status.requiredResourceCountIsPrecise
Change the name and reverse the sense. Naming things in the positive is better than naming them in the negative.
Diffstat (limited to 'bin')
-rw-r--r--bin/offline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/offline.cpp b/bin/offline.cpp
index a0adb6c2aa..7d69273b51 100644
--- a/bin/offline.cpp
+++ b/bin/offline.cpp
@@ -40,7 +40,7 @@ int main(int, char * []) {
std::cout << status.completedResourceCount << " / " << status.requiredResourceCount
<< " resources"
- << (status.requiredResourceCountIsIndeterminate ? " (indeterminate); " : "; ")
+ << (status.requiredResourceCountIsPrecise ? "; " : " (indeterminate); ")
<< status.completedResourceSize << " bytes downloaded"
<< " (" << bytesPerSecond << " bytes/sec)"
<< std::endl;