summaryrefslogtreecommitdiffstats
path: root/forms/source/component/FixedText.cxx
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-04-02 09:28:06 +0000
committerFrank Schönheit <fs@openoffice.org>2001-04-02 09:28:06 +0000
commitfb3f0c63ca7ad405321339af696b0f9fa78c3e74 (patch)
tree51cdeed9530b7df646e9c9d95309f452bd6ccc6d /forms/source/component/FixedText.cxx
parentMerge SRC627: 03/31/01 - 09:12:13 (NoBranch) (diff)
downloadcore-fb3f0c63ca7ad405321339af696b0f9fa78c3e74.tar.gz
core-fb3f0c63ca7ad405321339af696b0f9fa78c3e74.zip
#85582# HelpText property now in the aggregated control models
Diffstat (limited to 'forms/source/component/FixedText.cxx')
-rw-r--r--forms/source/component/FixedText.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/forms/source/component/FixedText.cxx b/forms/source/component/FixedText.cxx
index de8240b95d3f..b3335da3717f 100644
--- a/forms/source/component/FixedText.cxx
+++ b/forms/source/component/FixedText.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FixedText.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2000-11-23 08:48:15 $
+ * last change: $Author: fs $ $Date: 2001-04-02 10:28:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -141,13 +141,12 @@ void OFixedTextModel::fillProperties(
Sequence< starbeans::Property >& _rProps,
Sequence< starbeans::Property >& _rAggregateProps ) const
{
- FRM_BEGIN_PROP_HELPER(4)
+ FRM_BEGIN_PROP_HELPER(3)
RemoveProperty(_rAggregateProps, PROPERTY_TABSTOP);
DECL_PROP1(NAME, rtl::OUString, BOUND);
DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT);
DECL_PROP1(TAG, rtl::OUString, BOUND);
- DECL_PROP1(HELPTEXT,rtl::OUString, BOUND);
FRM_END_PROP_HELPER();
}
@@ -165,7 +164,7 @@ void SAL_CALL OFixedTextModel::write(const Reference<XObjectOutputStream>& _rxOu
// Version
_rxOutStream->writeShort(0x0002);
- _rxOutStream << m_aHelpText;
+ writeHelpTextCompatibly(_rxOutStream);
}
//------------------------------------------------------------------------------
@@ -176,7 +175,7 @@ void SAL_CALL OFixedTextModel::read(const Reference<XObjectInputStream>& _rxInSt
// Version
sal_Int16 nVersion = _rxInStream->readShort();
if (nVersion > 1)
- _rxInStream >> m_aHelpText;
+ readHelpTextCompatibly(_rxInStream);
}
//.........................................................................