summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/DatabaseForm.cxx10
-rw-r--r--forms/source/component/DatabaseForm.hxx2
2 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx
index 7bf343e41631..933a8fbff241 100644
--- a/forms/source/component/DatabaseForm.cxx
+++ b/forms/source/component/DatabaseForm.cxx
@@ -1687,11 +1687,11 @@ void ODatabaseForm::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const A
break;
case PROPERTY_ID_MASTERFIELDS:
rValue >>= m_aMasterFields;
- invlidateParameters();
+ invalidateParameters();
break;
case PROPERTY_ID_DETAILFIELDS:
rValue >>= m_aDetailFields;
- invlidateParameters();
+ invalidateParameters();
break;
case PROPERTY_ID_CYCLE:
m_aCycle = rValue;
@@ -2293,7 +2293,7 @@ void SAL_CALL ODatabaseForm::removeSQLErrorListener(const Reference<XSQLErrorLis
}
-void ODatabaseForm::invlidateParameters()
+void ODatabaseForm::invalidateParameters()
{
::osl::MutexGuard aGuard(m_aMutex);
m_aParameterManager.clearAllParameterInformation();
@@ -2314,7 +2314,7 @@ void ODatabaseForm::_propertyChanged(const PropertyChangeEvent& evt)
else // it was one of the statement relevant props
{
// if the statement has changed we have to delete the parameter info
- invlidateParameters();
+ invalidateParameters();
}
}
@@ -2866,7 +2866,7 @@ void SAL_CALL ODatabaseForm::unload()
restoreInsertOnlyState( );
// clear the parameters if there are any
- invlidateParameters();
+ invalidateParameters();
try
{
diff --git a/forms/source/component/DatabaseForm.hxx b/forms/source/component/DatabaseForm.hxx
index 7e0ac15b3ab3..1958a6b1b5b6 100644
--- a/forms/source/component/DatabaseForm.hxx
+++ b/forms/source/component/DatabaseForm.hxx
@@ -493,7 +493,7 @@ private:
);
/// invalidate all our parameter-related stuff
- void invlidateParameters();
+ void invalidateParameters();
void saveInsertOnlyState( );
void restoreInsertOnlyState( );