summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-09-15 09:56:48 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-09-16 06:25:16 +0900
commitd9da9a6e4d6f9537ad6b95f6b631078d195a03d5 (patch)
treeb977fafadeb34081806995f8f7f3317f14446f7f /forms
parenta41587a7410f300b5225dc15ada2972a79b66322 (diff)
Drop redundant cast
Change-Id: Ief00bc6e82cd4e54602e069c0bafd1dfc7bdd2ff
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormattedField.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index 9c9c7e12d3b3..2686b7b32784 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;