summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/qa/complex/dbaccess/DatabaseDocument.java6
-rw-r--r--dbaccess/source/core/api/KeySet.hxx2
-rw-r--r--dbaccess/source/core/api/RowSet.cxx2
-rw-r--r--dbaccess/source/core/api/RowSetBase.hxx2
-rw-r--r--dbaccess/source/core/api/SingleSelectQueryComposer.cxx2
-rw-r--r--dbaccess/source/core/api/resultset.cxx2
-rw-r--r--dbaccess/source/core/dataaccess/connection.cxx2
-rw-r--r--dbaccess/source/core/dataaccess/databasedocument.cxx4
-rw-r--r--dbaccess/source/core/inc/FilteredContainer.hxx2
-rw-r--r--dbaccess/source/core/inc/definitioncontainer.hxx2
-rw-r--r--dbaccess/source/ui/app/AppController.hxx2
-rw-r--r--dbaccess/source/ui/browser/brwctrlr.cxx8
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx2
-rw-r--r--dbaccess/source/ui/control/tabletree.cxx4
-rw-r--r--dbaccess/source/ui/dlg/directsql.cxx2
-rw-r--r--dbaccess/source/ui/dlg/queryfilter.cxx2
-rw-r--r--dbaccess/source/ui/inc/ConnectionLineData.hxx2
-rw-r--r--dbaccess/source/ui/inc/FieldDescriptions.hxx2
-rw-r--r--dbaccess/source/ui/inc/TableWindow.hxx2
-rw-r--r--dbaccess/source/ui/inc/tabletree.hxx4
-rw-r--r--dbaccess/source/ui/inc/unosqlmessage.hxx2
-rw-r--r--dbaccess/source/ui/querydesign/QueryDesignView.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/TableConnectionData.cxx2
-rw-r--r--dbaccess/source/ui/tabledesign/TableController.cxx2
-rw-r--r--dbaccess/source/ui/uno/copytablewizard.cxx4
-rw-r--r--dbaccess/source/ui/uno/dbinteraction.cxx2
27 files changed, 36 insertions, 36 deletions
diff --git a/dbaccess/qa/complex/dbaccess/DatabaseDocument.java b/dbaccess/qa/complex/dbaccess/DatabaseDocument.java
index 03db63289ef1..673f22d24677 100644
--- a/dbaccess/qa/complex/dbaccess/DatabaseDocument.java
+++ b/dbaccess/qa/complex/dbaccess/DatabaseDocument.java
@@ -227,7 +227,7 @@ public class DatabaseDocument extends TestCase implements com.sun.star.document.
return;
}
- assertEquals("interaction handleer called in wrong state", STATE_LOADING_DOC, m_loadDocState);
+ assertEquals("interaction handler called in wrong state", STATE_LOADING_DOC, m_loadDocState);
// auto-approve
final XInteractionContinuation continuations[] = _request.getContinuations();
@@ -419,7 +419,7 @@ public class DatabaseDocument extends TestCase implements com.sun.star.document.
assertEquals("wrong URL after loading the document", documentURL, databaseDoc.getURL());
impl_checkDocumentInitState(databaseDoc, true);
- // and while we are here ... initilizing the same document again should not be possible
+ // and while we are here ... initializing the same document again should not be possible
assureException( databaseDoc, XLoadable.class, "initNew", new Object[0],
DoubleInitializationException.class );
assureException( databaseDoc, XLoadable.class, "load", new Object[] { new PropertyValue[0] },
@@ -595,7 +595,7 @@ public class DatabaseDocument extends TestCase implements com.sun.star.document.
assertTrue( "The test case marker did not survive re-retrieval of the doc from the data source.",
impl_hasMarker( databaseDoc.getArgs() ) );
- // on the other hand, closing and regurlarly re-loading the doc *without* the marker should indeed
+ // on the other hand, closing and regulary re-loading the doc *without* the marker should indeed
// lose it
impl_closeDocument( databaseDoc );
databaseDoc = impl_loadDocument( documentURL, impl_getDefaultLoadArgs() );
diff --git a/dbaccess/source/core/api/KeySet.hxx b/dbaccess/source/core/api/KeySet.hxx
index 1c967f754e47..a16d3395c3e3 100644
--- a/dbaccess/source/core/api/KeySet.hxx
+++ b/dbaccess/source/core/api/KeySet.hxx
@@ -138,7 +138,7 @@ namespace dbaccess
sal_Int32 _nType,
sal_Int32 _nScale );
OUStringBuffer createKeyFilter( );
- bool doTryRefetch_throw() throw(css::sdbc::SQLException, css::uno::RuntimeException);;
+ bool doTryRefetch_throw() throw(css::sdbc::SQLException, css::uno::RuntimeException);
void tryRefetch(const ORowSetRow& _rInsertRow,bool bRefetch);
void executeUpdate(const ORowSetRow& _rInsertRow ,const ORowSetRow& _rOriginalRow,const OUString& i_sSQL,const OUString& i_sTableName,const ::std::vector<sal_Int32>& _aIndexColumnPositions = ::std::vector<sal_Int32>());
void executeInsert( const ORowSetRow& _rInsertRow,const OUString& i_sSQL,const OUString& i_sTableName = OUString(),bool bRefetch = false);
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx
index 14fad7d06fb1..9487dfe36b7c 100644
--- a/dbaccess/source/core/api/RowSet.cxx
+++ b/dbaccess/source/core/api/RowSet.cxx
@@ -869,7 +869,7 @@ void SAL_CALL ORowSet::insertRow( ) throw(SQLException, RuntimeException, std::
// insertRow is not allowed when
// standing not on the insert row nor
// when the row isn't modified
- // or the concurency is read only
+ // or the concurrency is read only
::osl::ResettableMutexGuard aGuard( *m_pMutex );
if(!m_pCache || !m_bNew || !m_bModified || m_nResultSetConcurrency == ResultSetConcurrency::READ_ONLY)
diff --git a/dbaccess/source/core/api/RowSetBase.hxx b/dbaccess/source/core/api/RowSetBase.hxx
index 3f99a545df32..66851c512072 100644
--- a/dbaccess/source/core/api/RowSetBase.hxx
+++ b/dbaccess/source/core/api/RowSetBase.hxx
@@ -373,7 +373,7 @@ namespace dbaccess
*/
explicit ORowSetNotifier( ORowSetBase* m_pRowSet );
- /** use this one to consturct an vector for change value notification
+ /** use this one to construct an vector for change value notification
*/
ORowSetNotifier( ORowSetBase* m_pRowSet,const ORowSetValueVector::Vector& i_aRow );
diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
index 2846c25b4eca..aaaf28f40a57 100644
--- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
+++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx
@@ -897,7 +897,7 @@ Reference< XNameAccess > SAL_CALL OSingleSelectQueryComposer::getColumns( ) thr
}
else if ( aRealFind == aSelectColumns->get().end() )
{
- // we can now only look if we found it under the realname propertery
+ // we can now only look if we found it under the realname property
// here we have to make the assumption that the position is correct
OSQLColumns::Vector::iterator aFind2 = aSelectColumns->get().begin() + i-1;
Reference<XPropertySet> xProp(*aFind2,UNO_QUERY);
diff --git a/dbaccess/source/core/api/resultset.cxx b/dbaccess/source/core/api/resultset.cxx
index 14b9540f94ac..f32168acba52 100644
--- a/dbaccess/source/core/api/resultset.cxx
+++ b/dbaccess/source/core/api/resultset.cxx
@@ -82,7 +82,7 @@ OResultSet::OResultSet(const css::uno::Reference< css::sdbc::XResultSet >& _xRes
{
m_bIsBookmarkable = ::comphelper::getBOOL(xSet->getPropertyValue(PROPERTY_ISBOOKMARKABLE));
OSL_ENSURE( !m_bIsBookmarkable || Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY).is(),
- "OResultSet::OResultSet: aggregate is inconsistent in it's bookmarkable attribute!" );
+ "OResultSet::OResultSet: aggregate is inconsistent in its bookmarkable attribute!" );
m_bIsBookmarkable = m_bIsBookmarkable && Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY).is();
}
}
diff --git a/dbaccess/source/core/dataaccess/connection.cxx b/dbaccess/source/core/dataaccess/connection.cxx
index 16895634d59e..624bc13e0c37 100644
--- a/dbaccess/source/core/dataaccess/connection.cxx
+++ b/dbaccess/source/core/dataaccess/connection.cxx
@@ -265,7 +265,7 @@ OConnection::OConnection(ODatabaseSource& _rDB
, const Reference< XComponentContext >& _rxORB)
:OSubComponent(m_aMutex, static_cast< OWeakObject* >(&_rDB))
// as the queries reroute their refcounting to us, this m_aMutex is okey. If the queries
- // container would do it's own refcounting, it would have to acquire m_pMutex
+ // container would do its own refcounting, it would have to acquire m_pMutex
// same for tables
,m_aTableFilter(_rDB.m_pImpl->m_aTableFilter)
,m_aTableTypeFilter(_rDB.m_pImpl->m_aTableTypeFilter)
diff --git a/dbaccess/source/core/dataaccess/databasedocument.cxx b/dbaccess/source/core/dataaccess/databasedocument.cxx
index 777b779f2287..51541d1dc0cc 100644
--- a/dbaccess/source/core/dataaccess/databasedocument.cxx
+++ b/dbaccess/source/core/dataaccess/databasedocument.cxx
@@ -609,7 +609,7 @@ namespace
continue;
}
- // TODO: clarify: anything else to care for? Both the sub componbents with and without model
+ // TODO: clarify: anything else to care for? Both the sub components with and without model
// should support the XModifiable interface, so I think nothing more is needed here.
OSL_FAIL( "lcl_hasAnyModifiedSubComponent_throw: anything left to do here?" );
}
@@ -974,7 +974,7 @@ OUString SAL_CALL ODatabaseDocument::getLocation( ) throw (RuntimeException, st
DocumentGuard aGuard( *this, DocumentGuard::MethodWithoutInit );
return m_pImpl->getURL();
// both XStorable::getLocation and XModel::getURL have to return the URL of the document, *not*
- // the location of the file which the docunment was possibly recovered from (which would be getDocFileLocation)
+ // the location of the file which the document was possibly recovered from (which would be getDocFileLocation)
}
sal_Bool SAL_CALL ODatabaseDocument::isReadonly( ) throw (RuntimeException, std::exception)
diff --git a/dbaccess/source/core/inc/FilteredContainer.hxx b/dbaccess/source/core/inc/FilteredContainer.hxx
index 47dcdb9ed30c..5089c53aa5aa 100644
--- a/dbaccess/source/core/inc/FilteredContainer.hxx
+++ b/dbaccess/source/core/inc/FilteredContainer.hxx
@@ -62,7 +62,7 @@ namespace dbaccess
virtual OUString getNameForObject(const ::connectivity::sdbcx::ObjectType& _xObject) override;
/** tell the container to free all elements and all additional resources.<BR>
- After using this method the object may be reconstructed by calling one of the <code>constrcuct</code> methods.
+ After using this method the object may be reconstructed by calling one of the <code>construct</code> methods.
*/
virtual void SAL_CALL disposing() override;
diff --git a/dbaccess/source/core/inc/definitioncontainer.hxx b/dbaccess/source/core/inc/definitioncontainer.hxx
index 318b663ce06d..1f7c594b3593 100644
--- a/dbaccess/source/core/inc/definitioncontainer.hxx
+++ b/dbaccess/source/core/inc/definitioncontainer.hxx
@@ -216,7 +216,7 @@ protected:
// helper
virtual void SAL_CALL disposing() override;
- /** create a object from it's persistent data within the configuration. To be overwritten by derived classes.
+ /** create a object from its persistent data within the configuration. To be overwritten by derived classes.
@param _rName the name the object has within the container
@return the newly created object or an empty reference if something went wrong
*/
diff --git a/dbaccess/source/ui/app/AppController.hxx b/dbaccess/source/ui/app/AppController.hxx
index ad9cafae96dc..7da651439903 100644
--- a/dbaccess/source/ui/app/AppController.hxx
+++ b/dbaccess/source/ui/app/AppController.hxx
@@ -388,7 +388,7 @@ namespace dbaui
void impl_validateObjectTypeAndName_throw( const sal_Int32 _nObjectType, const ::boost::optional< OUString >& i_rObjectName );
protected:
- // initalizing members
+ // initializing members
// state of a feature. 'feature' may be the handle of a css::util::URL somebody requested a dispatch interface for OR a toolbar slot.
virtual FeatureState GetState(sal_uInt16 nId) const override;
diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx b/dbaccess/source/ui/browser/brwctrlr.cxx
index 92e1778cdaf2..36425d0f9c7f 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -2092,7 +2092,7 @@ void SbaXDataBrowserController::Execute(sal_uInt16 nId, const Sequence< Property
break;
bool bNeedPostReload = preReloadForm();
- // reset the filter and the sort property simutaneously so only _one_ new statement has to be
+ // reset the filter and the sort property simultaneously so only _one_ new statement has to be
// sent
Reference< XPropertySet > xSet(getRowSet(), UNO_QUERY);
if ( xSet.is() )
@@ -2287,7 +2287,7 @@ IMPL_LINK_TYPED(SbaXDataBrowserController, OnInvalidateClipboard, Timer*, _pTime
InvalidateFeature(ID_BROWSER_COPY);
// if the invalidation was triggered by the timer, we do not need to invalidate PASTE.
- // The timer is only for checking the CUT/COPY slots regulariry, which depend on the
+ // The timer is only for checking the CUT/COPY slots regulary, which depend on the
// selection state of the active cell
// TODO: get a callback at the Edit which allows to be notified when the selection
// changes. This would be much better than this cycle-eating polling mechanism here ....
@@ -2375,7 +2375,7 @@ IMPL_LINK_TYPED(SbaXDataBrowserController, OnFoundData, FmFoundRecordInformation
// move the cursor
xCursor->moveToBookmark(rInfo.aPosition);
- // let the grid snyc it's display with the cursor
+ // let the grid sync its display with the cursor
Reference< XPropertySet > xModelSet(getControlModel(), UNO_QUERY);
OSL_ENSURE(xModelSet.is(), "SbaXDataBrowserController::OnFoundData : no model set ?!");
Any aOld = xModelSet->getPropertyValue("DisplayIsSynchron");
@@ -2500,7 +2500,7 @@ void SbaXDataBrowserController::initializeParser() const
void SbaXDataBrowserController::loaded(const EventObject& /*aEvent*/) throw( RuntimeException, std::exception )
{
// not interested in
- // we're loading within an separate thread and have a handling for it's "finished event"
+ // we're loading within an separate thread and have a handling for its "finished event"
}
void SbaXDataBrowserController::unloading(const EventObject& /*aEvent*/) throw( RuntimeException, std::exception )
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index 3ef0e018a028..4505431b1396 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -596,7 +596,7 @@ bool SbaGridHeader::ImplStartColumnDrag(sal_Int8 _nAction, const Point& _rMouseP
}
if (!bResizingCol)
{
- // force the base class to end it's drag mode
+ // force the base class to end its drag mode
EndTracking(TrackingEventFlags::Cancel | TrackingEventFlags::End);
// because we have 3d-buttons the select handler is called from MouseButtonUp, but StartDrag
diff --git a/dbaccess/source/ui/control/tabletree.cxx b/dbaccess/source/ui/control/tabletree.cxx
index 6a746901883c..c42afc808dbb 100644
--- a/dbaccess/source/ui/control/tabletree.cxx
+++ b/dbaccess/source/ui/control/tabletree.cxx
@@ -422,7 +422,7 @@ SvTreeListEntry* OTableTreeListBox::implAddEntry(
if ( !_rxMeta.is() )
return nullptr;
- // split the complete name into it's components
+ // split the complete name into its components
OUString sCatalog, sSchema, sName;
qualifiedNameComponents( _rxMeta, _rTableName, sCatalog, sSchema, sName, ::dbtools::eInDataManipulation );
@@ -594,7 +594,7 @@ SvTreeListEntry* OTableTreeListBox::getEntryByQualifiedName( const OUString& _rN
if ( !impl_getAndAssertMetaData( xMeta ) )
return nullptr;
- // split the complete name into it's components
+ // split the complete name into its components
OUString sCatalog, sSchema, sName;
qualifiedNameComponents(xMeta, _rName, sCatalog, sSchema, sName,::dbtools::eInDataManipulation);
diff --git a/dbaccess/source/ui/dlg/directsql.cxx b/dbaccess/source/ui/dlg/directsql.cxx
index 2a507262a3d1..ee2b0ba7b442 100644
--- a/dbaccess/source/ui/dlg/directsql.cxx
+++ b/dbaccess/source/ui/dlg/directsql.cxx
@@ -295,7 +295,7 @@ namespace dbaui
if (_bUpdateListBox)
{
- // selecte the normalized statement in the list box
+ // select the normalized statement in the list box
m_pSQLHistory->SelectEntryPos((sal_uInt16)_nHistoryPos);
OSL_ENSURE(m_pSQLHistory->GetSelectEntry() == m_aNormalizedHistory[_nHistoryPos],
"DirectSQLDialog::switchToHistory: inconsistent listbox entries!");
diff --git a/dbaccess/source/ui/dlg/queryfilter.cxx b/dbaccess/source/ui/dlg/queryfilter.cxx
index c5105f940c4b..93115beab46c 100644
--- a/dbaccess/source/ui/dlg/queryfilter.cxx
+++ b/dbaccess/source/ui/dlg/queryfilter.cxx
@@ -458,7 +458,7 @@ IMPL_LINK_TYPED( DlgFilterCrit, PredicateLoseFocus, Control&, rControl, void )
Edit* _pField = static_cast<Edit*>(&rControl);
// retrieve the field affected
Reference< XPropertySet> xColumn( getMatchingColumn( *_pField ) );
- // and normalize it's content
+ // and normalize its content
if ( xColumn.is() )
{
OUString sText( _pField->GetText() );
diff --git a/dbaccess/source/ui/inc/ConnectionLineData.hxx b/dbaccess/source/ui/inc/ConnectionLineData.hxx
index 901b9b32a690..097999169adc 100644
--- a/dbaccess/source/ui/inc/ConnectionLineData.hxx
+++ b/dbaccess/source/ui/inc/ConnectionLineData.hxx
@@ -36,7 +36,7 @@ namespace dbaui
/**
the class OConnectionLineData contains the data of a connection
- e.g. the source and the destanation field
+ e.g. the source and the destination field
**/
class OConnectionLineData : public ::salhelper::SimpleReferenceObject
{
diff --git a/dbaccess/source/ui/inc/FieldDescriptions.hxx b/dbaccess/source/ui/inc/FieldDescriptions.hxx
index 07029cef9f8e..8144a44c45ab 100644
--- a/dbaccess/source/ui/inc/FieldDescriptions.hxx
+++ b/dbaccess/source/ui/inc/FieldDescriptions.hxx
@@ -83,7 +83,7 @@ namespace dbaui
void SetPrimaryKey(bool _bPKey);
void SetCurrency(bool _bIsCurrency);
- /** copies the content of the field eescription into the column
+ /** copies the content of the field description into the column
@param _rxColumn the dest
*/
void copyColumnSettingsTo(const css::uno::Reference< css::beans::XPropertySet >& _rxColumn);
diff --git a/dbaccess/source/ui/inc/TableWindow.hxx b/dbaccess/source/ui/inc/TableWindow.hxx
index 71aec1282f65..c06038be478e 100644
--- a/dbaccess/source/ui/inc/TableWindow.hxx
+++ b/dbaccess/source/ui/inc/TableWindow.hxx
@@ -163,7 +163,7 @@ namespace dbaui
The EndPosition after resizing.
*/
void setSizingFlag(const Point& _rPos);
- /** set the rsizing flag to NONE.
+ /** set the resizing flag to NONE.
*/
void resetSizingFlag() { m_nSizingFlags = SIZING_NONE; }
diff --git a/dbaccess/source/ui/inc/tabletree.hxx b/dbaccess/source/ui/inc/tabletree.hxx
index adc390ba7f05..9f27c2e73d70 100644
--- a/dbaccess/source/ui/inc/tabletree.hxx
+++ b/dbaccess/source/ui/inc/tabletree.hxx
@@ -76,7 +76,7 @@ public:
/** fill the table list with the tables and views determined by the two given containers.
The views sequence is used to determine which table is of type view.
@param _rxConnection the connection where you got the object names from. Must not be NULL.
- Used to split the full qualified names into it's parts.
+ Used to split the full qualified names into its parts.
@param _rTables table/view sequence
@param _rViews view sequence
*/
@@ -149,7 +149,7 @@ protected:
/** fill the table list with the tables and views determined by the two given containers
@param _rxConnection the connection where you got the object names from. Must not be NULL.
- Used to split the full qualified names into it's parts.
+ Used to split the full qualified names into its parts.
@param _rTables table/view sequence, the second argument is <TRUE/> if it is a table, otherwise it is a view.
*/
void UpdateTableList(
diff --git a/dbaccess/source/ui/inc/unosqlmessage.hxx b/dbaccess/source/ui/inc/unosqlmessage.hxx
index a2e516757c5f..98d7e0b77e62 100644
--- a/dbaccess/source/ui/inc/unosqlmessage.hxx
+++ b/dbaccess/source/ui/inc/unosqlmessage.hxx
@@ -67,7 +67,7 @@ protected:
virtual void SAL_CALL initialize(css::uno::Sequence< css::uno::Any > const & args) throw (css::uno::Exception, css::uno::RuntimeException, std::exception) override;
// OPropertySetHelper overridables
- // (overwrittin these three, because we have some special handling for our property)
+ // (overwriting these three, because we have some special handling for our property)
virtual sal_Bool SAL_CALL convertFastPropertyValue( css::uno::Any& _rConvertedValue, css::uno::Any& _rOldValue, sal_Int32 _nHandle, const css::uno::Any& _rValue) throw(css::lang::IllegalArgumentException) override;
// OGenericUnoDialog overridables
diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
index d39a21af25db..c83d285c8d4f 100644
--- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
@@ -1358,7 +1358,7 @@ namespace
// The first element is (again) an AND condition
else if ( SQL_ISRULE(pCondition,boolean_term) )
{
- OSL_ENSURE(pCondition->count() == 3,"Illegal definifiton of boolean_term");
+ OSL_ENSURE(pCondition->count() == 3,"Illegal definition of boolean_term");
eErrorCode = GetANDCriteria(_pView,_pSelectionBrw,pCondition->getChild(0), nLevel,bHaving,bAddOrOnOneLine );
if ( eErrorCode == eOk )
eErrorCode = GetANDCriteria(_pView,_pSelectionBrw,pCondition->getChild(2), nLevel,bHaving,bAddOrOnOneLine );
diff --git a/dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx b/dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx
index 504540f2e3e2..5ac1436a80c3 100644
--- a/dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx
+++ b/dbaccess/source/ui/querydesign/QueryMoveTabWinUndoAct.cxx
@@ -30,7 +30,7 @@ void OJoinMoveTabWinUndoAct::TogglePosition()
// it looks like ptFrameScrollPos is meaningless, then I subtract it here and add it to ptNext, and
// next time I subtract again...
- // AbetptFrameScrollPos could have changed next time...
+ // Albeit ptFrameScrollPos could have changed next time...
m_pOwner->EnsureVisible(m_pTabWin);
m_ptNextPosition = ptNext;
diff --git a/dbaccess/source/ui/querydesign/TableConnectionData.cxx b/dbaccess/source/ui/querydesign/TableConnectionData.cxx
index c49b8dd3b943..cd425478d37e 100644
--- a/dbaccess/source/ui/querydesign/TableConnectionData.cxx
+++ b/dbaccess/source/ui/querydesign/TableConnectionData.cxx
@@ -92,7 +92,7 @@ bool OTableConnectionData::SetConnLine( sal_uInt16 nIndex, const OUString& rSour
if (sal_uInt16(m_vConnLineData.size()) < nIndex)
return false;
- // == still allowed, this correponds to a Append
+ // == still allowed, this corresponds to an Append
if (m_vConnLineData.size() == nIndex)
return AppendConnLine(rSourceFieldName, rDestFieldName);
diff --git a/dbaccess/source/ui/tabledesign/TableController.cxx b/dbaccess/source/ui/tabledesign/TableController.cxx
index 2feca27ed36e..97fd96e8dc1d 100644
--- a/dbaccess/source/ui/tabledesign/TableController.cxx
+++ b/dbaccess/source/ui/tabledesign/TableController.cxx
@@ -636,7 +636,7 @@ void SAL_CALL OTableController::disposing( const EventObject& _rSource ) throw(R
void OTableController::losingConnection( )
{
- // let the base class do it's reconnect
+ // let the base class do its reconnect
OTableController_BASE::losingConnection( );
// remove from the table
diff --git a/dbaccess/source/ui/uno/copytablewizard.cxx b/dbaccess/source/ui/uno/copytablewizard.cxx
index 177d22140c2c..bdfd531da0aa 100644
--- a/dbaccess/source/ui/uno/copytablewizard.cxx
+++ b/dbaccess/source/ui/uno/copytablewizard.cxx
@@ -246,7 +246,7 @@ namespace dbaui
Effectively, this method extracts m_xSourceResultSet, m_aSourceSelection, and m_bSourceSelectionBookmarks.
- If an inconsistent/insufficent sub set of those properties is present in the descriptor, and exception
+ If an inconsistent/insufficient sub set of those properties is present in the descriptor, and exception
is thrown.
*/
void impl_extractSourceResultSet_throw(
@@ -581,7 +581,7 @@ namespace
/** tries to obtain the InteractionHandler associated with a given data source
If the data source is a sdb-level data source, it will have a DatabaseDocument associated
- with it. This doocument may have an InteractionHandler used while loading it.
+ with it. This document may have an InteractionHandler used while loading it.
@throws RuntimeException
if it occurs during invoking any of the data source's methods, or if any of the involved
diff --git a/dbaccess/source/ui/uno/dbinteraction.cxx b/dbaccess/source/ui/uno/dbinteraction.cxx
index 35f8a599f7ee..7bfab1306def 100644
--- a/dbaccess/source/ui/uno/dbinteraction.cxx
+++ b/dbaccess/source/ui/uno/dbinteraction.cxx
@@ -86,7 +86,7 @@ namespace dbaui
Sequence< Reference< XInteractionContinuation > > aContinuations( i_Request->getContinuations() );
- // try to extract an SQLException (or one of it's derived members
+ // try to extract an SQLException (or one of its derived members
SQLExceptionInfo aInfo( aRequest );
if ( aInfo.isValid() )
{