Kaydet (Commit) 5704b205 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS dba24 (1.6.12); FILE MERGED

2005/02/09 11:12:28 fs 1.6.12.1: #i42066# setControlValue not to be overloaded, use doSetControlValue instead
üst 7add719a
......@@ -2,9 +2,9 @@
*
* $RCSfile: FormComponent.hxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: obo $ $Date: 2005-01-05 12:04:31 $
* last change: $Author: vg $ $Date: 2005-03-10 16:01:40 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -847,8 +847,8 @@ protected:
/** sets the given value as new current value for the control
<p>The default implementation will forward the given value to the aggregate, using
m_nValuePropertyAggregateHandle and/or m_sValuePropertyName.</p>
Besides some administrative work (such as caring for <member>m_eControlValueChangeInstigator</member>),
this method simply calls <member>doSetControlValue</member>.
@precond
Our own mutex is locked.
......@@ -856,11 +856,27 @@ protected:
The value to set. This value is guaranteed to be created by
<member>translateDbColumnToControlValue</member> or
<member>translateExternalValueToControlValue</member>
@param _eInstigator
the instigator of the value change
*/
virtual void setControlValue(
void setControlValue(
const ::com::sun::star::uno::Any& _rValue,
ValueChangeInstigator _eInstigator
);
/**
<p>The default implementation will forward the given value to the aggregate, using
m_nValuePropertyAggregateHandle and/or m_sValuePropertyName.</p>
@precond
Our own mutex is locked.
@param _rValue
The value to set. This value is guaranteed to be created by
<member>translateDbColumnToControlValue</member> or
<member>translateExternalValueToControlValue</member>
*/
virtual void doSetControlValue(
const ::com::sun::star::uno::Any& _rValue
);
/** retrieves the current value of the control
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment