diff options
Diffstat (limited to 'www/mozilla/patches/patch-ck')
-rw-r--r-- | www/mozilla/patches/patch-ck | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/www/mozilla/patches/patch-ck b/www/mozilla/patches/patch-ck deleted file mode 100644 index deef2325ac1..00000000000 --- a/www/mozilla/patches/patch-ck +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ck,v 1.3 2005/06/22 22:05:34 martin Exp $ - ---- extensions/transformiix/source/xslt/functions/txFormatNumberFunctionCall.cpp.orig 2003-06-17 00:31:17.000000000 +0200 -+++ extensions/transformiix/source/xslt/functions/txFormatNumberFunctionCall.cpp 2005-06-16 10:06:22.000000000 +0200 -@@ -112,12 +112,12 @@ - return aContext->recycler()->getStringResult(format->mNaN, aResult); - } - -- if (value == Double::POSITIVE_INFINITY) { -+ if (value == Double::PositiveInfinity()) { - return aContext->recycler()->getStringResult(format->mInfinity, - aResult); - } - -- if (value == Double::NEGATIVE_INFINITY) { -+ if (value == Double::NegativeInfinity()) { - nsAutoString res; - res.Append(format->mMinusSign); - res.Append(format->mInfinity); |