[Libreoffice-commits] core.git: 2 commits - chart2/qa connectivity/source framework/source odk/examples qadevOOo/tests sd/source sfx2/source solenv/bin svx/inc sw/qa sw/source udkapi/com

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Mon Nov 5 21:05:22 UTC 2018


 connectivity/source/drivers/firebird/Blob.cxx                              |    2 +-
 framework/source/services/frame.cxx                                        |    2 +-
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java |    2 +-
 qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java                    |    2 +-
 qadevOOo/tests/java/mod/_sw/SwXHeadFootText.java                           |    2 +-
 sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx                          |    2 +-
 sfx2/source/inc/templdgi.hxx                                               |    2 +-
 solenv/bin/pack_images.py                                                  |    2 +-
 svx/inc/sdr/overlay/overlaytools.hxx                                       |    6 +++---
 sw/source/filter/ww8/writerhelper.hxx                                      |    4 ++--
 udkapi/com/sun/star/container/XContainerQuery.idl                          |    2 +-
 11 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 6225a1fb1701fa4acc49f9961e4e468894f63f0b
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Nov 5 15:01:48 2018 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Nov 5 22:04:26 2018 +0100

    Removed executable permission on xlsx and odt file
    
    Change-Id: I59d9864e4fbf84ed98764db03b2f24703c7c9352
    Reviewed-on: https://gerrit.libreoffice.org/62903
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins

diff --git a/chart2/qa/extras/data/xlsx/chart-hatch-fill.xlsx b/chart2/qa/extras/data/xlsx/chart-hatch-fill.xlsx
old mode 100755
new mode 100644
diff --git a/sw/qa/extras/uiwriter/data2/tdf108687_tabstop.odt b/sw/qa/extras/uiwriter/data2/tdf108687_tabstop.odt
old mode 100755
new mode 100644
commit e10d196ab74ee9abaedaf8e5d0500f010b28338e
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Nov 5 15:13:09 2018 +0100
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Nov 5 22:04:17 2018 +0100

    Fix typos
    
    Change-Id: Id5489f3e8f1d3ced3d57b56f8d3a7a4818af0fca
    Reviewed-on: https://gerrit.libreoffice.org/62377
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Jenkins

diff --git a/connectivity/source/drivers/firebird/Blob.cxx b/connectivity/source/drivers/firebird/Blob.cxx
index d56516d2486a..99497cbe6104 100644
--- a/connectivity/source/drivers/firebird/Blob.cxx
+++ b/connectivity/source/drivers/firebird/Blob.cxx
@@ -76,7 +76,7 @@ void Blob::ensureBlobIsOpened()
         isc_info_blob_max_segment
     };
 
-    // Assuming a data (e.g. legth of blob) is maximum 64 bit.
+    // Assuming a data (e.g. length of blob) is maximum 64 bit.
     // That means we need 8 bytes for data + 2 for length of data + 1 for item
     // identifier for each item.
     char aResultBuffer[11 + 11];
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index c120cdb7d44d..798fcde08f28 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -1637,7 +1637,7 @@ void SAL_CALL Frame::removeFrameActionListener( const css::uno::Reference< css::
                     source of thrown exception is the right one. May it will be the frame himself.
 
     @throws     CloseVetoException
-                    if any internal things willn't be closed
+                    if any internal things will not be closed
 
     @threadsafe yes
 *//*-*****************************************************************************************************/
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index b9314bb9c467..4a6e9f9900b5 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -395,7 +395,7 @@ public class Interceptor implements com.sun.star.frame.XFrameActionListener,
 
     /*
      * Implementation of interface XDispatchProvider
-     * These functions are called from our master if he willn't handle the outstanding request.
+     * These functions are called from our master if he will not handle the outstanding request.
      * Given parameter should be checked if they are right for us. If it's true, the returned
      * dispatcher should be this implementation himself; otherwise call should be forwarded
      * to the slave.
diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java
index 39fd8f954743..b946304a0486 100644
--- a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java
+++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java
@@ -78,7 +78,7 @@ public class SwAccessibleHeaderView extends TestCase {
         XStyleFamiliesSupplier StyleFam = UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, xTextDoc);
         XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
 
-        // obtains style 'Standatd' from style family 'PageStyles'
+        // obtains style 'Standard' from style family 'PageStyles'
         PageStyles = (XNameAccess) AnyConverter.toObject(
             new Type(XNameAccess.class),StyleFamNames.getByName("PageStyles"));
         StdStyle = (XStyle) AnyConverter.toObject(
diff --git a/qadevOOo/tests/java/mod/_sw/SwXHeadFootText.java b/qadevOOo/tests/java/mod/_sw/SwXHeadFootText.java
index 7dbfb90db3ed..7ac8e02e6bd0 100644
--- a/qadevOOo/tests/java/mod/_sw/SwXHeadFootText.java
+++ b/qadevOOo/tests/java/mod/_sw/SwXHeadFootText.java
@@ -120,7 +120,7 @@ public class SwXHeadFootText extends TestCase {
         XStyleFamiliesSupplier StyleFam = UnoRuntime.queryInterface(XStyleFamiliesSupplier.class, xTextDoc);
         XNameAccess StyleFamNames = StyleFam.getStyleFamilies();
 
-        // obtains style 'Standatd' from style family 'PageStyles'
+        // obtains style 'Standard' from style family 'PageStyles'
         PageStyles = (XNameAccess) AnyConverter.toObject(
             new Type(XNameAccess.class),StyleFamNames.getByName("PageStyles"));
         StdStyle = (XStyle) AnyConverter.toObject(
diff --git a/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx b/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx
index 529c6a7662d3..dce7ebc9edbf 100644
--- a/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx
+++ b/sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx
@@ -45,7 +45,7 @@ class InsertPosition;
     5.) Borders around every page object.
     6.) Vertical and horizontal borders between enclosing page and outer
         page objects.
-    From these it calculates various output values:
+    From these, it calculates various output values:
     1.) The width of page objects.
     2.) The number of columns.
     3.) The size of the enclosing page.
diff --git a/sfx2/source/inc/templdgi.hxx b/sfx2/source/inc/templdgi.hxx
index c5caf475a387..db1e8c250eb7 100644
--- a/sfx2/source/inc/templdgi.hxx
+++ b/sfx2/source/inc/templdgi.hxx
@@ -269,7 +269,7 @@ protected:
     void Update_Impl();
     void UpdateFamily_Impl();
 
-    // In which FamilyState do I have to look , in order to get the
+    // In which FamilyState do I have to look, in order to get the
     // information of the ith Family in the pStyleFamilies.
     sal_uInt16 StyleNrToInfoOffset( sal_uInt16 i );
 
diff --git a/solenv/bin/pack_images.py b/solenv/bin/pack_images.py
index fc27be9f8e9f..71e7b32741b8 100644
--- a/solenv/bin/pack_images.py
+++ b/solenv/bin/pack_images.py
@@ -127,7 +127,7 @@ def check_rebuild(zip_file, imagelist_filenames, custom_paths, zip_list, links_f
         list of files.
 
         :type filenames: dict
-        :param filesnames: List of filenames to check against.
+        :param filenames: List of filenames to check against.
 
         :rtype: bool
         :return: True if zip archive is older and False if not.
diff --git a/svx/inc/sdr/overlay/overlaytools.hxx b/svx/inc/sdr/overlay/overlaytools.hxx
index ed84a04b9dfc..05b397845de3 100644
--- a/svx/inc/sdr/overlay/overlaytools.hxx
+++ b/svx/inc/sdr/overlay/overlaytools.hxx
@@ -126,7 +126,7 @@ namespace drawinglayer
             // The logic position
             basegfx::B2DPoint const                       maBasePosition;
 
-            // The stripe colors and legth
+            // The stripe colors and length
             basegfx::BColor const                         maRGBColorA;
             basegfx::BColor const                         maRGBColorB;
             double const                                  mfDiscreteDashLength;
@@ -230,7 +230,7 @@ namespace drawinglayer
             // the style
             HelplineStyle const                           meStyle;
 
-            // The stripe colors and legth
+            // The stripe colors and length
             basegfx::BColor const                         maRGBColorA;
             basegfx::BColor const                         maRGBColorB;
             double const                                  mfDiscreteDashLength;
@@ -275,7 +275,7 @@ namespace drawinglayer
             // The logic range
             basegfx::B2DRange const                       maRollingRectangle;
 
-            // The stripe colors and legth
+            // The stripe colors and length
             basegfx::BColor const                         maRGBColorA;
             basegfx::BColor const                         maRGBColorB;
             double const                                  mfDiscreteDashLength;
diff --git a/sw/source/filter/ww8/writerhelper.hxx b/sw/source/filter/ww8/writerhelper.hxx
index f91f32baa5fe..9d8d6fbcdb17 100644
--- a/sw/source/filter/ww8/writerhelper.hxx
+++ b/sw/source/filter/ww8/writerhelper.hxx
@@ -636,10 +636,10 @@ namespace sw
             */
             void SendObjectToHell(SdrObject &rObject) const;
 
-            /** Make Object lives in the top top layer
+            /** Make Object lives in the top layer
 
                 @param rObject
-                The object to be set to the bottom layer
+                The object to be set to the top layer
             */
             void SendObjectToHeaven(SdrObject &rObject) const;
 
diff --git a/udkapi/com/sun/star/container/XContainerQuery.idl b/udkapi/com/sun/star/container/XContainerQuery.idl
index 6fb407cf2c79..8e99f53f7ccd 100644
--- a/udkapi/com/sun/star/container/XContainerQuery.idl
+++ b/udkapi/com/sun/star/container/XContainerQuery.idl
@@ -64,7 +64,7 @@ published interface XContainerQuery: com::sun::star::uno::XInterface
         <p>
         It's not possible to use special commands or search specific parameters here.
         You can match by properties only. Enumerated elements must provide queried
-        properties as minimum. Not specified properties willn't be used for searching.
+        properties as minimum. Not specified properties will not be used for searching.
         <p>
 
         @param Properties   items of sub set must support given properties as minimum<br>


More information about the Libreoffice-commits mailing list