diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-10-02 09:44:24 +0200 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-10-02 07:55:15 +0000 |
commit | 19b85e90abe184b8e5bb2d80690eafe2d4a73878 (patch) | |
tree | b4c478be03922913c6fec3cd734e959998e5ba8d /forms | |
parent | 9363e4d0c36d7a23ebc90d7ebea5b04b98bc9409 (diff) |
Fix typos
Change-Id: Ib30f4e5f16518cbbe71cf03998513ebd8c2a4d1a
Reviewed-on: https://gerrit.libreoffice.org/18949
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'forms')
-rw-r--r-- | forms/qa/integration/forms/FormPropertyBags.java | 2 | ||||
-rw-r--r-- | forms/source/component/ComboBox.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/FormattedField.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/FormattedFieldWrapper.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/GroupManager.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/ListBox.cxx | 2 | ||||
-rw-r--r-- | forms/source/component/Pattern.cxx | 2 | ||||
-rw-r--r-- | forms/source/inc/FormComponent.hxx | 4 | ||||
-rw-r--r-- | forms/source/xforms/model.hxx | 2 |
9 files changed, 10 insertions, 10 deletions
diff --git a/forms/qa/integration/forms/FormPropertyBags.java b/forms/qa/integration/forms/FormPropertyBags.java index 4a3966acd5c7..61aa984c1790 100644 --- a/forms/qa/integration/forms/FormPropertyBags.java +++ b/forms/qa/integration/forms/FormPropertyBags.java @@ -172,7 +172,7 @@ public class FormPropertyBags extends complexlib.ComplexTestCase implements XPro assure( "persistent properties did not survive reload (1)!", ((String)textFieldModel.getPropertyValue( "SomeBoundText" )).equals( "ChangedBoundText" ) ); assure( "persistent properties did not survive reload (2)!", ((String)textFieldModel.getPropertyValue( "SomeReadonlyText" )).equals( "InitialReadonlyText" ) ); // assure( "persistent properties did not survive reload (3)!", ((Integer)textFieldModel.getPropertyValue( "SomeNumericValue" )).equals( Integer.valueOf( 42 ) ) ); - // cannot check this until the types really survice - at the moment, integers are converted to doubles ... + // cannot check this until the types really survive - at the moment, integers are converted to doubles... // the transient property should not have survived boolean caughtExpected = false; diff --git a/forms/source/component/ComboBox.cxx b/forms/source/component/ComboBox.cxx index 79157bd374b1..2893d52eca0e 100644 --- a/forms/source/component/ComboBox.cxx +++ b/forms/source/component/ComboBox.cxx @@ -809,7 +809,7 @@ Any OComboBoxModel::translateDbColumnToControlValue() m_aLastKnownValue.clear(); return m_aLastKnownValue.hasValue() ? m_aLastKnownValue : makeAny( OUString() ); - // (m_aLastKnownValue is alllowed to be VOID, the control value isn't) + // (m_aLastKnownValue is allowed to be VOID, the control value isn't) } diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx index 2d2092edfd2e..8a64e7c57992 100644 --- a/forms/source/component/FormattedField.cxx +++ b/forms/source/component/FormattedField.cxx @@ -545,7 +545,7 @@ void OFormattedModel::loaded(const EventObject& rEvent) throw ( css::uno::Runtim // HACK: our onConnectedDbColumn accesses our NumberFormatter which locks the solar mutex (as it doesn't have // an own one). To prevent deadlocks with other threads which may request a property from us in an // UI-triggered action (e.g. an tooltip) we lock the solar mutex _here_ before our base class locks - // it's own muext (which is used for property requests) + // its own mutex (which is used for property requests) // alternative a): we use two mutexes, one which is passed to the OPropertysetHelper and used for // property requests and one for our own code. This would need a lot of code rewriting // alternative b): The NumberFormatter has to be really threadsafe (with an own mutex), which is diff --git a/forms/source/component/FormattedFieldWrapper.cxx b/forms/source/component/FormattedFieldWrapper.cxx index eddaab89de4f..b35160ab0bd8 100644 --- a/forms/source/component/FormattedFieldWrapper.cxx +++ b/forms/source/component/FormattedFieldWrapper.cxx @@ -316,7 +316,7 @@ void OFormattedFieldWrapper::ensureAggregate() css::uno::Reference<css::uno::XInterface> xEditModel = m_xContext->getServiceManager()->createInstanceWithContext(FRM_SUN_COMPONENT_TEXTFIELD, m_xContext); if (!xEditModel.is()) { - // arghhh ... instantiate it directly ... it's dirty, but we really need this aggregate + // arghhh... instantiate it directly... it's dirty, but we really need this aggregate OEditModel* pModel = new OEditModel(m_xContext); xEditModel.set(static_cast<XWeak*>(pModel), css::uno::UNO_QUERY); } diff --git a/forms/source/component/GroupManager.cxx b/forms/source/component/GroupManager.cxx index c255ede867da..d0a33abf4631 100644 --- a/forms/source/component/GroupManager.cxx +++ b/forms/source/component/GroupManager.cxx @@ -281,7 +281,7 @@ void SAL_CALL OGroupManager::propertyChange(const PropertyChangeEvent& evt) thro if (evt.PropertyName == PROPERTY_NAME) { if (!sGroupName.isEmpty()) return; // group hasn't changed; ignore this name change. - // no GroupName; use Name as GroupNme + // no GroupName; use Name as GroupName evt.OldValue >>= sGroupName; } else if (evt.PropertyName == PROPERTY_GROUP_NAME) { diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx index 24fe16fc18be..5cf73b084518 100644 --- a/forms/source/component/ListBox.cxx +++ b/forms/source/component/ListBox.cxx @@ -735,7 +735,7 @@ namespace frm Reference<XIndexAccess> xFieldsByIndex(xFieldsByName, UNO_QUERY); // do we have a bound column if yes we have to select it - // and the displayed column is the first column othwhise we act as a combobox + // and the displayed column is the first column otherwise we act as a combobox OUString aFieldName; OUString aBoundFieldName; diff --git a/forms/source/component/Pattern.cxx b/forms/source/component/Pattern.cxx index 5c21d7ee9efc..1fbb7d0dbe4f 100644 --- a/forms/source/component/Pattern.cxx +++ b/forms/source/component/Pattern.cxx @@ -206,7 +206,7 @@ Any OPatternModel::translateDbColumnToControlValue() m_aLastKnownValue.clear(); return m_aLastKnownValue.hasValue() ? m_aLastKnownValue : makeAny( OUString() ); - // (m_aLastKnownValue is alllowed to be VOID, the control value isn't) + // (m_aLastKnownValue is allowed to be VOID, the control value isn't) } // XReset diff --git a/forms/source/inc/FormComponent.hxx b/forms/source/inc/FormComponent.hxx index b2420a957253..7b77af450594 100644 --- a/forms/source/inc/FormComponent.hxx +++ b/forms/source/inc/FormComponent.hxx @@ -674,7 +674,7 @@ protected: column the object is bound to, or with the external value binding, if present.<br/> E.g. for a text control model, this property will most probably be "Text".</p> - <p>Derived classes are stronly recommend to call this method - at least the + <p>Derived classes are strongly recommended to call this method - at least the "DataFieldProperty" (exposed in getFastPropertyValue) relies on the information given herein, and needs to be supplied otherwise else.</p> @@ -691,7 +691,7 @@ protected: the handle of the property, as exposed to external components.<br/> Normally, this information can be obtained dynamically (e.g. from describeFixedProperties), but since this method is to be called from within the constructor of derived classes, - we prefer to be on the *really* safe side here .... + we prefer to be on the *really* safe side here... @see setControlValue @see suspendValueListening diff --git a/forms/source/xforms/model.hxx b/forms/source/xforms/model.hxx index fcb416aeaae1..b4fc530c77f5 100644 --- a/forms/source/xforms/model.hxx +++ b/forms/source/xforms/model.hxx @@ -106,7 +106,7 @@ private: MIPs_t maMIPs; /// map nodes to their MIPs bool mbInitialized; /// has model been initialized ? - bool mbExternalData; /// is the data of this model to be considered an ingegral part of the document? + bool mbExternalData; /// is the data of this model to be considered an integral part of the document? void initializePropertySet(); |