vcl/source/filter/sgvspln.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 46f34ebb0bcb296d242fa8b1195f4ecfffebbc80
Author: Miklos Vajna <vmik...@collabora.co.uk>
Date:   Thu Nov 5 09:12:34 2015 +0100

    vcl: fix typo in the Android stub of sgvspln
    
    The intention is to call the real function, not the stub itself.
    
    Change-Id: I4bfd3020871c68951b19a3c63ea9a2dc4d736be7

diff --git a/vcl/source/filter/sgvspln.cxx b/vcl/source/filter/sgvspln.cxx
index 1d95a05..762e310 100644
--- a/vcl/source/filter/sgvspln.cxx
+++ b/vcl/source/filter/sgvspln.cxx
@@ -29,7 +29,7 @@ namespace std
 template<typename T>
 T copysign(T x, T y)
 {
-    return copysign(x, y);
+    return ::copysign(x, y);
 }
 }
 #endif
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to