diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-04-02 09:28:06 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-04-02 09:28:06 +0000 |
commit | fb3f0c63ca7ad405321339af696b0f9fa78c3e74 (patch) | |
tree | 51cdeed9530b7df646e9c9d95309f452bd6ccc6d /forms/source/component/Grid.cxx | |
parent | d0f5707a1cd086576fc8a9b364fbd9aa03ae251a (diff) |
#85582# HelpText property now in the aggregated control models
Diffstat (limited to 'forms/source/component/Grid.cxx')
-rw-r--r-- | forms/source/component/Grid.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index f28ee5f42a78..72c19744cfd2 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -2,9 +2,9 @@ * * $RCSfile: Grid.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: jl $ $Date: 2001-03-22 16:47:19 $ + * 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 @@ -1156,7 +1156,7 @@ void OGridControlModel::write(const Reference<XObjectOutputStream>& _rxOutStream _rxOutStream->writeLong(getINT32(m_aTextColor)); // neu ab Version 6 - _rxOutStream << m_aHelpText; + _rxOutStream << m_sHelpText; if (nAnyMask & FONTDESCRIPTOR) _rxOutStream << m_aFont; @@ -1299,7 +1299,7 @@ void OGridControlModel::read(const Reference<XObjectInputStream>& _rxInStream) // neu ab Version 6 if (nVersion > 5) - _rxInStream >> m_aHelpText; + _rxInStream >> m_sHelpText; if (nAnyMask & FONTDESCRIPTOR) { |