FreeBSD Bugzilla – Attachment 176715 Details for
Bug 213993
math/kmplot: fix for lang/gcc5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
view.cpp patch
patch-kmplot_view.cpp (text/plain), 851 bytes, created by
Kenneth Salerno
on 2016-11-07 11:25:41 UTC
(
hide
)
Description:
view.cpp patch
Filename:
MIME Type:
Creator:
Kenneth Salerno
Created:
2016-11-07 11:25:41 UTC
Size:
851 bytes
patch
obsolete
>--- kmplot/view.cpp.orig 2016-11-07 11:06:48 UTC >+++ kmplot/view.cpp >@@ -477,7 +477,7 @@ QPointF View::toPixel( const QPointF & r > double x = pixel.x(); > double y = pixel.y(); > >- if ( isnan(x) ) >+ if ( std::isnan(x) ) > { > xclipflg = true; > x = pixelIfNaN.x(); >@@ -497,14 +497,14 @@ QPointF View::toPixel( const QPointF & r > } > else > { >- if ( isinf(x) == -1 ) >+ if ( std::isinf(x) == -1 ) > x = 0; > >- else if ( isinf(x) == 1 ) >+ else if ( std::isinf(x) == 1 ) > x = m_clipRect.right(); > } > >- if ( isnan(y) ) >+ if ( std::isnan(y) ) > { > yclipflg = true; > y = pixelIfNaN.y(); >@@ -524,10 +524,10 @@ QPointF View::toPixel( const QPointF & r > } > else > { >- if ( isinf(y) == -1 ) >+ if ( std::isinf(y) == -1 ) > y = 0; > >- else if ( isinf(y) == 1 ) >+ else if ( std::isinf(y) == 1 ) > y = m_clipRect.bottom(); > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 213993
:
176392
|
176421
| 176715