summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormComponent.cxx2
-rw-r--r--forms/source/component/FormattedField.cxx2
-rw-r--r--forms/source/inc/windowstateguard.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx
index e7170d3733b2..1f5004beec7a 100644
--- a/forms/source/component/FormComponent.cxx
+++ b/forms/source/component/FormComponent.cxx
@@ -2331,7 +2331,7 @@ void OBoundControlModel::doSetControlValue( const Any& _rValue )
try
{
- // release our mutex once (it's acquired in one of the the calling methods), as setting aggregate properties
+ // release our mutex once (it's acquired in one of the calling methods), as setting aggregate properties
// may cause any uno controls belonging to us to lock the solar mutex, which is potentially dangerous with
// our own mutex locked
MutexRelease aRelease( m_aMutex );
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index 0eb9406c8bf2..dd918461eb04 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -1122,7 +1122,7 @@ Any OFormattedModel::translateControlValueToExternalValue( ) const
Any aExternalValue;
- // translate into the the external value type
+ // translate into the external value type
Type aExternalValueType( getExternalValueType() );
switch ( aExternalValueType.getTypeClass() )
{
diff --git a/forms/source/inc/windowstateguard.hxx b/forms/source/inc/windowstateguard.hxx
index 523e7aa943a4..28cd0b255d2d 100644
--- a/forms/source/inc/windowstateguard.hxx
+++ b/forms/source/inc/windowstateguard.hxx
@@ -43,7 +43,7 @@ namespace frm
we need to ensure that the state does not contradict the model property "too much".
As an example, consider a form control which, according to its model's property, is disabled.
- Now when the parent VCL window of the control's VCL window is enabled, then the the control's
+ Now when the parent VCL window of the control's VCL window is enabled, then the control's
window is enabled, too - which contradicts the model property.
A WindowStateGuard helps you preventing such inconsistent states.