summaryrefslogtreecommitdiff
path: root/forms/source/component/DatabaseForm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/DatabaseForm.cxx')
-rw-r--r--forms/source/component/DatabaseForm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/DatabaseForm.cxx b/forms/source/component/DatabaseForm.cxx
index 0c0b3470f4d8..3658d3942164 100644
--- a/forms/source/component/DatabaseForm.cxx
+++ b/forms/source/component/DatabaseForm.cxx
@@ -155,7 +155,7 @@ class OFormSubmitResetThread: public OComponentEventThread
{
protected:
- // duplicate an event with respect to it's type
+ // duplicate an event with respect to its type
virtual EventObject *cloneEvent( const EventObject *pEvt ) const override;
// process an event. while processing the mutex isn't locked, and pCompImpl
@@ -2702,7 +2702,7 @@ bool ODatabaseForm::canShareConnection( const Reference< XPropertySet >& _rxPare
void ODatabaseForm::doShareConnection( const Reference< XPropertySet >& _rxParentProps )
{
- // get the conneciton of the parent
+ // get the connection of the parent
Reference< XConnection > xParentConn;
_rxParentProps->getPropertyValue( PROPERTY_ACTIVE_CONNECTION ) >>= xParentConn;
OSL_ENSURE( xParentConn.is(), "ODatabaseForm::doShareConnection: we're a valid sub-form, but the parent has no connection?!" );
@@ -3530,7 +3530,7 @@ void SAL_CALL ODatabaseForm::moveToInsertRow() throw( SQLException, RuntimeExcep
// Formerly, the following line was conditioned with a "not is new", means we did not move the aggregate
// to the insert row if it was already positioned there.
//
- // This prevented the RowSet implementation from resetting it's column values. We, ourself, formerly
+ // This prevented the RowSet implementation from resetting its column values. We, ourself, formerly
// did this reset of columns in reset_impl, where we set every column to the ControlDefault, or, if this
// was not present, to NULL. However, the problem with setting to NULL was #88888#, the problem with
// _not_ setting to NULL (which was the original fix for #88888#) was #97955#.