forms/source/component/FormattedField.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d9da9a6e4d6f9537ad6b95f6b631078d195a03d5
Author: Takeshi Abe <t...@fixedpoint.jp>
Date:   Thu Sep 15 09:56:48 2016 +0900

    Drop redundant cast
    
    Change-Id: Ief00bc6e82cd4e54602e069c0bafd1dfc7bdd2ff

diff --git a/forms/source/component/FormattedField.cxx 
b/forms/source/component/FormattedField.cxx
index 9c9c7e1..2686b7b 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -776,7 +776,7 @@ void OFormattedModel::read(const 
Reference<XObjectInputStream>& _rxInStream) thr
                             aEffectiveValue <<= _rxInStream->readUTF();
                             break;
                         case 1: // double
-                            aEffectiveValue <<= 
(double)_rxInStream->readDouble();
+                            aEffectiveValue <<= _rxInStream->readDouble();
                             break;
                         case 2:
                             break;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to