Commit 72ba6b07 authored by Gus Grubba's avatar Gus Grubba

Fix Windows build.

I have no idea how this was building elsewhere at all.
parent ecc2b56f
...@@ -22,7 +22,7 @@ bool ...@@ -22,7 +22,7 @@ bool
QGCGeoBoundingCube::isValid() const QGCGeoBoundingCube::isValid() const
{ {
return pointNW.isValid() && pointSE.isValid() && pointNW.latitude() != MaxSouth && pointSE.latitude() != MaxNorth && \ return pointNW.isValid() && pointSE.isValid() && pointNW.latitude() != MaxSouth && pointSE.latitude() != MaxNorth && \
pointNW.longitude() != MaxEast && pointSE.longitude() != MaxWest && pointNW.altitude() < MaxAlt and pointSE.altitude() > MinAlt; pointNW.longitude() != MaxEast && pointSE.longitude() != MaxWest && pointNW.altitude() < MaxAlt && pointSE.altitude() > MinAlt;
} }
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment