| Summary: |
freerotationfilter.cpp:92: (style) Same expression on both sides of '||'. |
| Product: |
[Applications] digikam
|
Reporter: |
dcb314 |
| Component: |
Albums-Filters | Assignee: |
Digikam Developers <digikam-bugs-null> |
| Status: |
RESOLVED
FIXED
|
|
|
| Severity: |
normal
|
CC: |
caulier.gilles
|
| Priority: |
NOR
|
|
|
| Version First Reported In: |
4.0.0 | |
|
| Target Milestone: |
--- | |
|
| Platform: |
unspecified | |
|
| OS: |
Linux | |
|
|
Latest Commit:
|
http://commits.kde.org/digikam/5ac520779fce2238610e07936ca8ecaa7802a177
|
Version Fixed/Implemented In:
|
4.0.0
|
|
Sentry Crash Report:
|
|
| |
Source code is if (p1.x() < 0 || p2.y() < 0 || p1.x() < 0 || p2.y() < 0) { return 0.0; } Maybe something like if (p1.x() < 0 || p1.y() < 0 || p2.x() < 0 || p2.y() < 0) { return 0.0; } was intended.