diff options
author | Christoph Willing <chris.willing@iinet.net.au> | 2016-04-26 20:33:16 +1000 |
---|---|---|
committer | Christoph Willing <chris.willing@iinet.net.au> | 2016-04-27 14:13:18 +1000 |
commit | af44f12df361dd0d769d16387b759bb4f7ac133b (patch) | |
tree | 00cf30b0d6e5644a6888c8ccee2f53c58eb137e4 /office/LibreOffice/010_isnan.diff | |
parent | f652af29bc18579cd769e6f2f98bca29b2ceb554 (diff) | |
download | slackbuilds-af44f12df361dd0d769d16387b759bb4f7ac133b.tar.gz |
office/LibreOffice: Updated for version 5.1.2.2
Signed-off-by: Christoph Willing <chris.willing@iinet.net.au>
Diffstat (limited to 'office/LibreOffice/010_isnan.diff')
-rw-r--r-- | office/LibreOffice/010_isnan.diff | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/office/LibreOffice/010_isnan.diff b/office/LibreOffice/010_isnan.diff deleted file mode 100644 index 166046331e..0000000000 --- a/office/LibreOffice/010_isnan.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- xmloff/source/draw/ximp3dscene.cxx.orig 2016-03-01 09:20:43.000000000 +1000 -+++ xmloff/source/draw/ximp3dscene.cxx 2016-03-15 23:28:54.841653352 +1000 -@@ -66,7 +66,7 @@ - { - ::basegfx::B3DVector aVal; - SvXMLUnitConverter::convertB3DVector(aVal, sValue); -- if (!isnan(aVal.getX()) && !isnan(aVal.getY()) && !isnan(aVal.getZ())) -+ if (!std::isnan(aVal.getX()) && !std::isnan(aVal.getY()) && !std::isnan(aVal.getZ())) - { - maDirection = aVal; - } |