diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 09:53:05 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-04-02 09:53:05 +0000 |
commit | ebc85e5712f9c8447adf4fcf8731f328ef66efc0 (patch) | |
tree | 5f32747caba51589f2556d37726d3aff2b76dc07 /forms/source/component/Grid.cxx | |
parent | 6dda90133e80d51677a173c4043021e8b284af40 (diff) |
INTEGRATION: CWS frmvalidation (1.27.114); FILE MERGED
2004/03/11 16:46:16 fs 1.27.114.1: mass checkin
- #i25106# core for validating form controls via external XValidator instances
- moved the services/interfaces related to binding form controls to external
value suppliers into css.form.binding (out of drafts.css.form/component)
Diffstat (limited to 'forms/source/component/Grid.cxx')
-rw-r--r-- | forms/source/component/Grid.cxx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index 37567227051f..c5001c7e24d2 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -2,9 +2,9 @@ * * $RCSfile: Grid.cxx,v $ * - * $Revision: 1.27 $ + * $Revision: 1.28 $ * - * last change: $Author: hr $ $Date: 2003-03-25 18:01:17 $ + * last change: $Author: rt $ $Date: 2004-04-02 10:53:05 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -99,6 +99,9 @@ #ifndef _COMPHELPER_CONTAINER_HXX_ #include <comphelper/container.hxx> #endif +#ifndef _COMPHELPER_BASIC_IO_HXX_ +#include <comphelper/basicio.hxx> +#endif #ifndef _SV_SVAPP_HXX #include <vcl/svapp.hxx> @@ -517,7 +520,7 @@ void OGridControlModel::fillProperties( Sequence< Property >& _rProps, Sequence< Property >& _rAggregateProps ) const { - BEGIN_AGGREGATION_PROPERTY_HELPER(33, m_xAggregateSet) + BEGIN_DESCRIBE_AGGREGATION_PROPERTIES(33, m_xAggregateSet) DECL_PROP1(NAME, ::rtl::OUString, BOUND); DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT); DECL_PROP1(TAG, ::rtl::OUString, BOUND); @@ -551,7 +554,7 @@ void OGridControlModel::fillProperties( DECL_PROP3(ALWAYSSHOWCURSOR, sal_Bool, BOUND, MAYBEDEFAULT, TRANSIENT); DECL_PROP3(DISPLAYSYNCHRON, sal_Bool, BOUND, MAYBEDEFAULT, TRANSIENT); DECL_PROP2(HELPURL, ::rtl::OUString, BOUND, MAYBEDEFAULT); - END_AGGREGATION_PROPERTY_HELPER(); + END_DESCRIBE_PROPERTIES(); } //------------------------------------------------------------------------------ |