summaryrefslogtreecommitdiffstats
path: root/forms/source/component/CheckBox.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-10-25 16:16:49 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-10-25 16:16:49 +0000
commit0f93441e80b7f147158dab00724c72762e5a67e8 (patch)
tree19ae4efd9c9f862c22c242a9e165177f7f05367e /forms/source/component/CheckBox.cxx
parent#93037# importfiltername for masterdocuments modified (diff)
downloadcore-0f93441e80b7f147158dab00724c72762e5a67e8.tar.gz
core-0f93441e80b7f147158dab00724c72762e5a67e8.zip
#92924#: removed cast
Diffstat (limited to 'forms/source/component/CheckBox.cxx')
-rw-r--r--forms/source/component/CheckBox.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/CheckBox.cxx b/forms/source/component/CheckBox.cxx
index 4cab4828584e..bf8763b6f617 100644
--- a/forms/source/component/CheckBox.cxx
+++ b/forms/source/component/CheckBox.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CheckBox.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: fs $ $Date: 2001-06-21 18:24:00 $
+ * last change: $Author: hr $ $Date: 2001-10-25 17:16:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -339,12 +339,12 @@ void SAL_CALL OCheckBoxModel::read(const Reference<stario::XObjectInputStream>&
case 0x0001 : _rxInStream >> m_sReferenceValue; m_nDefaultChecked = _rxInStream->readShort(); break;
case 0x0002 :
_rxInStream >> m_sReferenceValue;
- _rxInStream >> (sal_Int16)m_nDefaultChecked;
+ _rxInStream >> m_nDefaultChecked;
readHelpTextCompatibly(_rxInStream);
break;
case 0x0003 :
_rxInStream >> m_sReferenceValue;
- _rxInStream >> (sal_Int16)m_nDefaultChecked;
+ _rxInStream >> m_nDefaultChecked;
readHelpTextCompatibly(_rxInStream);
readCommonProperties(_rxInStream);
break;