summaryrefslogtreecommitdiffstats
path: root/kde/patch/kmplot
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2020-07-31 16:13:18 +0200
committer Eric Hameleers <alien@slackware.com>2020-07-31 16:13:18 +0200
commit703149752c6265b36973d2c1f0f5a69721e3128a (patch)
tree7ded0d801771d5705f48ffbfb48f37dd4829439e /kde/patch/kmplot
parentdd005500c624d127321ff3fe14a0c29bfa8d67f7 (diff)
parentcd7ff1719433fbb3b6a8304596be173bc1b91b00 (diff)
downloadktown-master.tar.gz
ktown-master.tar.xz
Merge branch 'elogind'HEADmaster
Diffstat (limited to 'kde/patch/kmplot')
-rw-r--r--kde/patch/kmplot/kmplot_isnan.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/kde/patch/kmplot/kmplot_isnan.patch b/kde/patch/kmplot/kmplot_isnan.patch
deleted file mode 100644
index 691ff89..0000000
--- a/kde/patch/kmplot/kmplot_isnan.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- kmplot-15.12.3/kmplot/view.cpp.0 2016-03-11 21:19:48.011194225 +0000
-+++ kmplot-15.12.3/kmplot/view.cpp 2016-03-11 21:20:37.341056493 +0000
-@@ -476,7 +476,7 @@
- double x = pixel.x();
- double y = pixel.y();
-
-- if ( isnan(x) )
-+ if ( std::isnan(x) )
- {
- xclipflg = true;
- x = pixelIfNaN.x();
-@@ -496,14 +496,14 @@
- }
- 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();
-@@ -523,10 +523,10 @@
- }
- 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();
- }
-