You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2019/01/03 23:34:44 UTC

svn commit: r1850272 - in /openoffice/trunk/main: basegfx/source/workbench/ editeng/inc/editeng/ sd/source/ui/slidesorter/inc/view/ svx/inc/svx/ svx/source/dialog/ sw/source/core/objectpositioning/ sw/source/filter/html/

Author: mseidel
Date: Thu Jan  3 23:34:44 2019
New Revision: 1850272

URL: http://svn.apache.org/viewvc?rev=1850272&view=rev
Log:
Fixed typo (horizonal -> horizontal)

Modified:
    openoffice/trunk/main/basegfx/source/workbench/bezierclip.cxx
    openoffice/trunk/main/editeng/inc/editeng/boxitem.hxx
    openoffice/trunk/main/sd/source/ui/slidesorter/inc/view/SlsInsertionIndicatorOverlay.hxx
    openoffice/trunk/main/svx/inc/svx/framelink.hxx
    openoffice/trunk/main/svx/source/dialog/frmsel.cxx
    openoffice/trunk/main/sw/source/core/objectpositioning/anchoredobjectposition.cxx
    openoffice/trunk/main/sw/source/filter/html/htmlgrin.cxx

Modified: openoffice/trunk/main/basegfx/source/workbench/bezierclip.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/basegfx/source/workbench/bezierclip.cxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/basegfx/source/workbench/bezierclip.cxx (original)
+++ openoffice/trunk/main/basegfx/source/workbench/bezierclip.cxx Thu Jan  3 23:34:44 2019
@@ -237,7 +237,7 @@ bool Impl_calcSafeParams( double& 			t1,
             {
                 // r_y is virtually zero, thus we've got a horizontal
                 // line. Now check whether we maybe coincide with lower or
-                // upper horizonal bound line.
+                // upper horizontal bound line.
                 if( tolEqual(p0.y, lowerYBound) ||
                     tolEqual(p0.y, upperYBound) )
                 {

Modified: openoffice/trunk/main/editeng/inc/editeng/boxitem.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/editeng/inc/editeng/boxitem.hxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/editeng/inc/editeng/boxitem.hxx (original)
+++ openoffice/trunk/main/editeng/inc/editeng/boxitem.hxx Thu Jan  3 23:34:44 2019
@@ -139,7 +139,7 @@ class EDITENG_DLLPUBLIC SvxBoxInfoItem :
 	SvxBorderLine* pHori;   //innere horizontale Linie
 	SvxBorderLine* pVert;   //innere vertikale Linie
 
-    bool                mbEnableHor;   /// true = Enable inner horizonal line.
+    bool                mbEnableHor;   /// true = Enable inner horizontal line.
     bool                mbEnableVer;   /// true = Enable inner vertical line.
 
 	/*

Modified: openoffice/trunk/main/sd/source/ui/slidesorter/inc/view/SlsInsertionIndicatorOverlay.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sd/source/ui/slidesorter/inc/view/SlsInsertionIndicatorOverlay.hxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/sd/source/ui/slidesorter/inc/view/SlsInsertionIndicatorOverlay.hxx (original)
+++ openoffice/trunk/main/sd/source/ui/slidesorter/inc/view/SlsInsertionIndicatorOverlay.hxx Thu Jan  3 23:34:44 2019
@@ -55,7 +55,7 @@ namespace sd { namespace slidesorter { n
 class FramePainter;
 class LayeredDevice;
 
-/** The insertion indicator is painted as a vertical or horizonal bar
+/** The insertion indicator is painted as a vertical or horizontal bar
     in the space between slides.
 */
 class InsertionIndicatorOverlay

Modified: openoffice/trunk/main/svx/inc/svx/framelink.hxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/svx/inc/svx/framelink.hxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/svx/inc/svx/framelink.hxx (original)
+++ openoffice/trunk/main/svx/inc/svx/framelink.hxx Thu Jan  3 23:34:44 2019
@@ -405,7 +405,7 @@ long GetTRDiagOffset( long nVerOffs, lon
     drawn with only one call of a border drawing function. This means, the two
     frame borders must have equal style and color, and none of the other
     vertical and diagonal frame borders break the lines of the two borders in
-    any way (i.e. two vertical double frame borders would break the horizonal
+    any way (i.e. two vertical double frame borders would break the horizontal
     frame borders). Of course this function can be used for vertical frame
     borders as well.
 

Modified: openoffice/trunk/main/svx/source/dialog/frmsel.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/svx/source/dialog/frmsel.cxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/svx/source/dialog/frmsel.cxx (original)
+++ openoffice/trunk/main/svx/source/dialog/frmsel.cxx Thu Jan  3 23:34:44 2019
@@ -470,7 +470,7 @@ void FrameSelectorImpl::InitBorderGeomet
         {
             for( nRow = 0, nRows = maArray.GetRowCount(); nRow < nRows; ++nRow )
             {
-                // the usable area between horizonal/vertical frame borders of current quadrant
+                // the usable area between horizontal/vertical frame borders of current quadrant
                 Rectangle aRect( maArray.GetCellRect( nCol, nRow ) );
                 aRect.Left() += nClV + 1;
                 aRect.Right() -= nClV + 1;

Modified: openoffice/trunk/main/sw/source/core/objectpositioning/anchoredobjectposition.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/core/objectpositioning/anchoredobjectposition.cxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/sw/source/core/objectpositioning/anchoredobjectposition.cxx (original)
+++ openoffice/trunk/main/sw/source/core/objectpositioning/anchoredobjectposition.cxx Thu Jan  3 23:34:44 2019
@@ -819,7 +819,7 @@ SwTwips SwAnchoredObjectPosition::_CalcR
     SwTwips nRelPosX = nOffset;
     if ( _rHoriOrient.GetHoriOrient() == text::HoriOrientation::NONE )
     {
-        // 'manual' horizonal position
+        // 'manual' horizontal position
         const bool bR2L = rAnchorFrm.IsRightToLeft();
         if( IsAnchoredToChar() && text::RelOrientation::CHAR == eRelOrient )
         {

Modified: openoffice/trunk/main/sw/source/filter/html/htmlgrin.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/sw/source/filter/html/htmlgrin.cxx?rev=1850272&r1=1850271&r2=1850272&view=diff
==============================================================================
--- openoffice/trunk/main/sw/source/filter/html/htmlgrin.cxx (original)
+++ openoffice/trunk/main/sw/source/filter/html/htmlgrin.cxx Thu Jan  3 23:34:44 2019
@@ -211,7 +211,7 @@ void SwHTMLParser::SetAnchorAndAdjustmen
 		short nIndent = 0;
 		GetMarginsFromContextWithNumBul( nLeftSpace, nRightSpace, nIndent );
 
-		// Horizonale Ausrichtung und Umlauf bestimmen.
+		// Horizontale Ausrichtung und Umlauf bestimmen.
         sal_Int16 eHoriRel;
 		SwSurround eSurround;
 		switch( eHoriOri )