diff options
author | Daniel Wilhelm <shieldwed@outlook.com> | 2017-01-09 10:54:11 +0100 |
---|---|---|
committer | Daniel Wilhelm <shieldwed@outlook.com> | 2017-01-09 10:54:11 +0100 |
commit | 6011596a2f247bde24095e985f6e2547e4b191ef (patch) | |
tree | 296003a2c8952f41b2998653ba02911ba2b83b0a /wx+/graph.cpp | |
parent | 8.7 (diff) | |
download | FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.tar.gz FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.tar.bz2 FreeFileSync-6011596a2f247bde24095e985f6e2547e4b191ef.zip |
8.8
Diffstat (limited to 'wx+/graph.cpp')
-rw-r--r-- | wx+/graph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/graph.cpp b/wx+/graph.cpp index 192e5513..d45a0e85 100644 --- a/wx+/graph.cpp +++ b/wx+/graph.cpp @@ -91,7 +91,7 @@ public: int realToScreenRound(double realPos) const //returns -1 and screenSize + 1 if out of bounds! { //catch large double values: if double is larger than what int can represent => undefined behavior! - numeric::clamp(realPos , outOfBoundsLow, outOfBoundsHigh); + numeric::clamp(realPos, outOfBoundsLow, outOfBoundsHigh); return numeric::round(realToScreen(realPos)); } |