summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-22 09:48:17 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-22 09:58:19 +0200
commit616c6924f18911fce110918edf05ed2f4e52dba9 (patch)
tree3e307b3e91fe6b025701eb3dfea0ff61c750aff6 /forms
parent7ca8407b403bf97a472ce2ade7e3fa1cb588cf24 (diff)
s/the the/the/
Change-Id: Iadacffaad832c6ff06757e8567e24f929f24a4c3
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.