summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-02-27 06:30:56 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2013-02-27 07:01:11 +0100
commit1b77302ef95f1eaf77baabd98883ed649fa25242 (patch)
tree762c2f44f1b43721c18b1ecf82881862c2109260 /dbaccess
parent66dc20ae279e4f913795ff6e959d83eaefed78b4 (diff)
spelling in comments
Change-Id: I3a7df167a91dd6ef845d16d5e6cf46ff5a82d455
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/api/KeySet.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx
index 99022cf3727a..261249b62375 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -182,7 +182,7 @@ void OKeySet::findTableColumnsMatching_throw( const Any& i_aTable,
// For instance, imagine a "SELECT alias.col FROM table AS alias". Now i_aTable would be the table named
// "table", so our sUpdateTableName would be "table" as well - not the information about the "alias" is
// already lost here.
- // now getColumnPositions would travers the columns, and check which of them belong to the table denoted
+ // now getColumnPositions would traverse the columns, and check which of them belong to the table denoted
// by sUpdateTableName. Since the latter is "table", but the columns only know that they belong to a table
// named "alias", there will be no matching - so getColumnPositions wouldn't find anything.
@@ -518,7 +518,7 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
OUString sIsNull(" IS NULL");
OUString sParam(" = ?");
- // use keys and indexes for excat postioning
+ // use keys and indexes for exact postioning
// first the keys
Reference<XNameAccess> xKeyColumns = getKeyColumns();
@@ -1042,7 +1042,7 @@ void SAL_CALL OKeySet::moveToCurrentRow( ) throw(SQLException, RuntimeException
Reference<XNameAccess> OKeySet::getKeyColumns() const
{
RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "OKeySet::getKeyColumns" );
- // use keys and indexes for excat postioning
+ // use keys and indexes for exact postioning
// first the keys
Reference<XIndexAccess> xKeys = m_xTableKeys;