scaddins/source/analysis/analysishelper.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7a2b33db198cb030225f4f89f57d94a750c7d7c8
Author: Regina Henschel <reg...@apache.org>
Date:   Sun Aug 11 16:45:31 2013 +0000

    #i122997 Calculation error in IMABS() function

diff --git a/scaddins/source/analysis/analysishelper.hxx 
b/scaddins/source/analysis/analysishelper.hxx
index d71c6bf..d6056c7 100644
--- a/scaddins/source/analysis/analysishelper.hxx
+++ b/scaddins/source/analysis/analysishelper.hxx
@@ -830,7 +830,7 @@ inline double Complex::Imag( void ) const
 
 inline double Complex::Abs( void ) const
 {
-    return std::norm( Num );
+    return std::abs( Num );
 }
 
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to