dbaccess/qa/complex/dbaccess/RowSet.java   |    2 +-
 dbaccess/source/core/api/CacheSet.cxx      |    2 +-
 dbaccess/source/core/api/KeySet.cxx        |   10 +++++-----
 dbaccess/source/core/api/OptimisticSet.cxx |    2 +-
 sfx2/source/view/viewsh.cxx                |    4 ++--
 sw/inc/anchoreddrawobject.hxx              |    2 +-
 sw/source/core/text/txtfly.cxx             |    2 +-
 7 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit a762204a5df46ef68c5b0be4427fc99e32c4c36d
Author: Julien Nabet <serval2...@yahoo.fr>
Date:   Wed Sep 17 21:14:52 2014 +0200

    Typos
    
    Change-Id: Icf850c4b7b146a82a5638a3cd88ad02f3171aff3

diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java 
b/dbaccess/qa/complex/dbaccess/RowSet.java
index c9bb39a..66749fb 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 65c5e83..de9d943 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 2c75718..96e01ab 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 44e7807..aece21b 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 9b40bb4..fd07e1a 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 425952bd..e49185e 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 de4ecc3..8d3a903 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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to