summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-09-17 21:14:52 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-09-17 21:15:33 +0200
commita762204a5df46ef68c5b0be4427fc99e32c4c36d (patch)
tree375dac376cd52f9754661b0a4bdf66a6b7b22a50
parent9acf9b650481c53ac2fe3a13ad2b5a04db395386 (diff)
Typos
Change-Id: Icf850c4b7b146a82a5638a3cd88ad02f3171aff3
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java2
-rw-r--r--dbaccess/source/core/api/CacheSet.cxx2
-rw-r--r--dbaccess/source/core/api/KeySet.cxx10
-rw-r--r--dbaccess/source/core/api/OptimisticSet.cxx2
-rw-r--r--sfx2/source/view/viewsh.cxx4
-rw-r--r--sw/inc/anchoreddrawobject.hxx2
-rw-r--r--sw/source/core/text/txtfly.cxx2
7 files changed, 12 insertions, 12 deletions
diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java b/dbaccess/qa/complex/dbaccess/RowSet.java
index c9bb39aa0a38..66749fb30233 100644
--- a/dbaccess/qa/complex/dbaccess/RowSet.java
+++ b/dbaccess/qa/complex/dbaccess/RowSet.java
@@ -200,7 +200,7 @@ public class RowSet extends TestCase
System.out.println("testing testRowSet");
createTestCase(true);
- // sequential postioning
+ // sequential positioning
m_resultSet.beforeFirst();
testSequentialPositining(m_resultSet, m_row);
diff --git a/dbaccess/source/core/api/CacheSet.cxx b/dbaccess/source/core/api/CacheSet.cxx
index 65c5e83cfcda..de9d9434db47 100644
--- a/dbaccess/source/core/api/CacheSet.cxx
+++ b/dbaccess/source/core/api/CacheSet.cxx
@@ -282,7 +282,7 @@ void SAL_CALL OCacheSet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetR
fillTableName(xSet);
OUStringBuffer aSql("UPDATE " + m_aComposedTableName + " SET ");
- // list all cloumns that should be set
+ // list all columns that should be set
OUStringBuffer aCondition;
::std::list< sal_Int32> aOrgValues;
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx
index 2c75718a4ab3..96e01ab05346 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -562,14 +562,14 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
fillTableName(xSet);
OUStringBuffer aSql = "UPDATE " + m_aComposedTableName + " SET ";
- // list all cloumns that should be set
+ // list all columns that should be set
static OUString aPara(" = ?,");
OUString aQuote = getIdentifierQuoteString();
static OUString aAnd(" AND ");
OUString sIsNull(" IS NULL");
OUString sParam(" = ?");
- // use keys and indexes for exact postioning
+ // use keys and indexes for exact positioning
// first the keys
Reference<XNameAccess> xKeyColumns = getKeyColumns();
@@ -972,11 +972,11 @@ void SAL_CALL OKeySet::deleteRow(const ORowSetRow& _rDeleteRow,const connectivit
OUStringBuffer aSql("DELETE FROM " + m_aComposedTableName + " WHERE ");
- // list all cloumns that should be set
+ // list all columns that should be set
OUString aQuote = getIdentifierQuoteString();
static OUString aAnd(" AND ");
- // use keys and indexes for excat postioning
+ // use keys and indexes for exact positioning
Reference<XNameAccess> xKeyColumns = getKeyColumns();
// second the indexes
Reference<XIndexesSupplier> xIndexSup(_xTable,UNO_QUERY);
@@ -1082,7 +1082,7 @@ void SAL_CALL OKeySet::moveToCurrentRow( ) throw(SQLException, RuntimeException
Reference<XNameAccess> OKeySet::getKeyColumns() const
{
- // use keys and indexes for exact postioning
+ // use keys and indexes for exact positioning
// first the keys
Reference<XIndexAccess> xKeys = m_xTableKeys;
diff --git a/dbaccess/source/core/api/OptimisticSet.cxx b/dbaccess/source/core/api/OptimisticSet.cxx
index 44e780725b55..aece21b12db2 100644
--- a/dbaccess/source/core/api/OptimisticSet.cxx
+++ b/dbaccess/source/core/api/OptimisticSet.cxx
@@ -182,7 +182,7 @@ void SAL_CALL OptimisticSet::updateRow(const ORowSetRow& _rInsertRow ,const ORow
{
if ( m_aJoinedKeyColumns.empty() )
throw SQLException();
- // list all cloumns that should be set
+ // list all columns that should be set
static OUString s_sPara(" = ?");
OUString aQuote = getIdentifierQuoteString();
diff --git a/sfx2/source/view/viewsh.cxx b/sfx2/source/view/viewsh.cxx
index 9b40bb40f6de..fd07e1a74f3c 100644
--- a/sfx2/source/view/viewsh.cxx
+++ b/sfx2/source/view/viewsh.cxx
@@ -1052,7 +1052,7 @@ void SfxViewShell::OuterResizePixel
here. The mainuse is to change the size of the Vis-Area.
If the Border is changed due to the new calculation then this has to be set
- by <SfxViewShell::SetBorderPixel(const SvBorder&)>. The Postioning of Tools
+ by <SfxViewShell::SetBorderPixel(const SvBorder&)>. The Positioning of Tools
is only allowed after the calling of 'SetBorderPixel'.
[Example]
@@ -1101,7 +1101,7 @@ void SfxViewShell::InnerResizePixel
If the Border is changed due to the new calculation then is has to be set
by <SfxViewShell::SetBorderPixel(const SvBorder&)>.
- The Postioning of Tools is only allowed after the calling of
+ The Positioning of Tools is only allowed after the calling of
'SetBorderPixel'.
diff --git a/sw/inc/anchoreddrawobject.hxx b/sw/inc/anchoreddrawobject.hxx
index 425952bd824b..e49185e7974c 100644
--- a/sw/inc/anchoreddrawobject.hxx
+++ b/sw/inc/anchoreddrawobject.hxx
@@ -34,7 +34,7 @@ class SW_DLLPUBLIC SwAnchoredDrawObject : public SwAnchoredObject
// and that a positioning has to be performed.
bool mbValidPos;
- // rectangle, keeping the last object rectangle after the postioning
+ // rectangle, keeping the last object rectangle after the positioning
Rectangle* mpLastObjRect;
// boolean, indicating that anchored drawing object hasn't been attached
diff --git a/sw/source/core/text/txtfly.cxx b/sw/source/core/text/txtfly.cxx
index de4ecc335944..8d3a903ed26d 100644
--- a/sw/source/core/text/txtfly.cxx
+++ b/sw/source/core/text/txtfly.cxx
@@ -810,7 +810,7 @@ bool SwTxtFly::GetTop( const SwAnchoredObject* _pAnchoredObj,
// if wrapping style is considered on object positioning.
// Thus, text will wrap around negative positioned objects.
// #i3317# - remove condition on checking,
- // if wrappings style is considered on object postioning.
+ // if wrappings style is considered on object positioning.
// Thus, text is wrapping around negative positioned objects.
// #i35640# - no consideration of negative
// positioned objects, if wrapping style isn't considered on