[Libreoffice-commits] core.git: include/filter lotuswordpro/source odk/examples offapi/com officecfg/registry qadevOOo/tests shell/source

Andrea Gelmini andrea.gelmini at gelma.net
Sun Mar 12 20:02:44 UTC 2017


 include/filter/msfilter/svdfppt.hxx                                                     |    2 -
 lotuswordpro/source/filter/xfilter/xfdrawobj.hxx                                        |    2 -
 lotuswordpro/source/filter/xfilter/xfparastyle.hxx                                      |   14 +++++-----
 odk/examples/DevelopersGuide/Database/CodeSamples.java                                  |    2 -
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java             |    2 -
 odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java               |    4 +-
 odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java |    2 -
 odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml                      |    2 -
 odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml                |    2 -
 offapi/com/sun/star/accessibility/AccessibleEventId.idl                                 |    2 -
 offapi/com/sun/star/chart/Diagram.idl                                                   |    2 -
 offapi/com/sun/star/util/PathSubstitution.idl                                           |    2 -
 officecfg/registry/schema/org/openoffice/Office/Common.xcs                              |    2 -
 qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java                            |    6 ++--
 shell/source/win32/spsupp/COMOpenDocuments.cxx                                          |    2 -
 15 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit 127b2e59995f3abcf1593138cd27af9f375d7b1b
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Sun Mar 12 17:03:26 2017 +0100

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

diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index d83be89..f6f1c49 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -238,7 +238,7 @@ struct PptSlidePersistAtom
     sal_uInt32          nFlags;
     sal_uInt32          nNumberTexts;
     sal_uInt32          nSlideId;
-    sal_uInt32          nReserved;                  // we will use nReserved temporarly to set the offset to SSSlideInfoAtom ( if possible )
+    sal_uInt32          nReserved;                  // we will use nReserved temporarily to set the offset to SSSlideInfoAtom ( if possible )
 
 public:
                         PptSlidePersistAtom() { Clear(); }
diff --git a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
index 3c4292a..3d0760b 100644
--- a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
@@ -74,7 +74,7 @@
  * Base class for all drawing object(ellipse,rect,circle,...).
  * I can set Positions,anchor,rotate,text style name here.
  *
- * Drawing objects can be rotated,scaled and skewed, drawing objects must have positions setted,
+ * Drawing objects can be rotated, scaled and skewed, drawing objects must have positions set,
  * you can use SetPosition(...).
  */
 class XFDrawObject : public XFFrame
diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
index 07f4c70..c73e346 100644
--- a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
@@ -102,7 +102,7 @@ public:
 
 public:
     /**
-     * @descr   Set layout for the paragraph.When such property was setted, this paragraph will
+     * @descr   Set layout for the paragraph. When such property was set, this paragraph will
      *          start at an new page.
      */
     void    SetMasterPage(const OUString& master);
@@ -111,7 +111,7 @@ public:
 
     /**
      * @descr   set the paragraph default font.
-     * @param   font font object to be setted.Font object are deleted by font-factory,so
+     * @param   font object to be set. Font object is deleted by font-factory, so
      *          don't delete it in the destructure function of para style.
      */
     void    SetFont(rtl::Reference<XFFont> const & font);
@@ -122,14 +122,14 @@ public:
     const rtl::Reference<XFFont>& GetFont(){ return m_pFont; }
 
     /**
-     * @descr   Set the indent of the paragraph.This is the indent for
+     * @descr   Set the indent of the paragraph. This is the indent for
                 the first line.
      * @param   indent value of the first-line indent.
      */
     void    SetIndent(double indent );
 
     /**
-     * @descr   Set the padding of the paragraph.This is the distance
+     * @descr   Set the padding of the paragraph. This is the distance
                 between the border and the top of the text.
      * @param   indent value of the padding.
      */
@@ -149,7 +149,7 @@ public:
     void    SetAlignType(enumXFAlignType eAlign);
 
     /**
-     * @descr   Set the shadow of the paragraph.there is 4 positions, you
+     * @descr   Set the shadow of the paragraph. There are 4 positions, you
                 can find it in the definition of enumShadowPos.
      * @param   pos
      * @param   offset the distance between the paragraph border and the shadow.
@@ -158,7 +158,7 @@ public:
     void    SetShadow(enumXFShadowPos pos, double offset, XFColor& color);
 
     /**
-     * @descr   The borders is complex,so you have to create one before use.
+     * @descr   The borders is complex, so you have to create one before use.
                 Very few paragraphs will readly have borders property,this way
                 we can save much memory.
      * @param   pBorders borders of the paragraph,please reference the XFBorders.
@@ -202,7 +202,7 @@ public:
     void    AddTabStyle(enumXFTab type, double len, sal_Unicode leader, sal_Unicode delimiter);
 
     /**
-     * @descr   for para style copy operator,sometimes you may need to override tab styles.
+     * @descr   for para style copy operator, sometimes you may need to override tab styles.
      */
     void    ClearTabStyles();
 
diff --git a/odk/examples/DevelopersGuide/Database/CodeSamples.java b/odk/examples/DevelopersGuide/Database/CodeSamples.java
index c40496e..094901f 100644
--- a/odk/examples/DevelopersGuide/Database/CodeSamples.java
+++ b/odk/examples/DevelopersGuide/Database/CodeSamples.java
@@ -112,7 +112,7 @@ public class CodeSamples
         System.exit(0);
     }
 
-    // check if the connection is not null aand dispose it later on.
+    // check if the connection is not null and dispose it later on.
     public static void checkConnection(XConnection con)
     {
         if(con != null)
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index f91f7d8..12246ac 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -206,7 +206,7 @@ public class DocumentView extends    JFrame
     public void createFrame()
     {
         // create view frame (as a XFrame!) here
-        // Look for right view mode setted by user command line parameter.
+        // Look for right view mode set by user command line parameter.
         // First try to get a new unambigous frame name from our global ViewContainer.
         if(ViewContainer.mbInplace)
         {
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 72ec89a..c3afb60 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -220,8 +220,8 @@ public class StatusView extends    JPanel
             return;
 
         // create some listener on given frame for available status events
-        // Created listener instances will register herself on this frame and
-        // show her received information automatically on setted UI controls.
+        // Created listener instances will register themselves on this frame and
+        // show it received information automatically on set UI controls.
         m_aFontListener      = new StatusListener(m_laFontValue     ,FONT_ON     ,FONT_OFF     ,xFrame, FEATUREURL_FONT     );
         m_aSizeListener      = new StatusListener(m_laSizeValue     ,SIZE_ON     ,SIZE_OFF     ,xFrame, FEATUREURL_SIZE     );
         m_aBoldListener      = new StatusListener(m_laBoldValue     ,BOLD_ON     ,BOLD_OFF     ,xFrame, FEATUREURL_BOLD     );
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index a560d51..3a23395 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -163,7 +163,7 @@ public class FilterOptions
             catch(com.sun.star.lang.IllegalArgumentException exConvert)
             {
                 // ONE argument has the wrong type
-                // But I think we mustn't react here - because we setted
+                // But I think we mustn't react here - because we set
                 // default values for every necessary item we need.
                 // In case this exception occurs - this default exist
                 // and we can live with it.
diff --git a/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml b/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
index 93e3587..ae23fae 100644
--- a/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
+++ b/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
@@ -23,7 +23,7 @@
   <property name="macroname" value="SayHello"/>
   <property name="unopkgfile" value="${basedir}/${macroname}.uno.pkg"/>
 
-  <!-- ==================== intialise properties ========================= -->
+  <!-- ==================== initialise properties ========================= -->
   <target name="checksdk">
     <condition property="UsingSDK">
       <available file="${env.OFFICE_PROGRAM_PATH}"/>
diff --git a/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml b/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
index 7979b23..88e0b8b 100644
--- a/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
+++ b/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
@@ -23,7 +23,7 @@
   <property name="macroname" value="ScriptSelector"/>
   <property name="unopkgfile" value="${basedir}/${macroname}.uno.pkg"/>
 
-  <!-- ==================== intialise properties ========================= -->
+  <!-- ==================== initialise properties ========================= -->
   <target name="checksdk">
     <condition property="UsingSDK">
       <available file="${env.OFFICE_PROGRAM_PATH}"/>
diff --git a/offapi/com/sun/star/accessibility/AccessibleEventId.idl b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
index 741e55c..9973921 100644
--- a/offapi/com/sun/star/accessibility/AccessibleEventId.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
@@ -374,7 +374,7 @@ constants AccessibleEventId
     const short LISTBOX_ENTRY_COLLAPSED = 33;
 
     /** Constant used to determine when the active descendant of a component
-        has been removed but unlike ACTIVE_DECENDANT_CHANGED the decendant
+        has been removed but unlike ACTIVE_DESCENDANT_CHANGED the descendant
         that is to be removed does not have focus. The active descendant
         is used in objects with transient children.
 
diff --git a/offapi/com/sun/star/chart/Diagram.idl b/offapi/com/sun/star/chart/Diagram.idl
index 76f31b0..023517a 100644
--- a/offapi/com/sun/star/chart/Diagram.idl
+++ b/offapi/com/sun/star/chart/Diagram.idl
@@ -49,7 +49,7 @@ published service Diagram
 
     interface com::sun::star::chart::XDiagram;
 
-    /** Provides easier access to the differnet axes and their sub elements.
+    /** Provides easier access to the different axes and their sub elements.
         @since OOo 3.4
     */
     [optional] interface com::sun::star::chart::XAxisSupplier;
diff --git a/offapi/com/sun/star/util/PathSubstitution.idl b/offapi/com/sun/star/util/PathSubstitution.idl
index 4d71971..1cee259 100644
--- a/offapi/com/sun/star/util/PathSubstitution.idl
+++ b/offapi/com/sun/star/util/PathSubstitution.idl
@@ -67,7 +67,7 @@ module com {  module sun {  module star {  module  util {
         The only exceptions are: \$(username), \$(langid) and \$(vlang).
         Therefore the service implementation should only substitute variables which
         are located at the start of a provided path string or are part of a multi-path.
-        This special service is not designed to be a text substiution but shall
+        This special service is not designed to be a text substitution but shall
         provide (a) valid substituted path(s).
     </p>
 
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index c869ca9..59e6c7a 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -6431,7 +6431,7 @@
             previews, etc...). EdgeBlending will visualize a one pixel border on the preview object with interpolated
             colors (default: TopLeft White, BottomRight Black) so that a nice 3D effect is shown. It is a percent
             value describing how strong the effect shall be. The value 0% switches it off, while the value 100% will
-            cover the preview object's border completely with one pixel. Values in-between vill be alpha-blended with
+            cover the preview object's border completely with one pixel. Values in-between will be alpha-blended with
             the original preview image.
           </desc>
           <label>Defines the EdgeBlending for Previews in Percent.</label>
diff --git a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
index 0b35515..17f230c 100644
--- a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
+++ b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
@@ -304,7 +304,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
     }
 
     /**
-    * The group which was setted by <code>setGroup</code> must be returned
+    * The group which was set by <code>setGroup</code> must be returned
     * while calling from object relation <code>XQueryAna</code>
     * method <code>getGroup</code>
     */
@@ -322,7 +322,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
 
 
     /**
-    * The clause which was setted by <code>setHavingClause</code> must be returned
+    * The clause which was set by <code>setHavingClause</code> must be returned
     * while calling from object relation <code>XQueryAna</code>
     * method <code>getHavingClause</code>
     */
@@ -502,7 +502,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
 
     /**
     * Method <code>getOrder</code> from object relation <code>xQueryAna</code>
-    * checks the order which was setted while calling <code>setOrder</code>
+    * checks the order which was set while calling <code>setOrder</code>
     */
     public void _setOrder() {
         try{
diff --git a/shell/source/win32/spsupp/COMOpenDocuments.cxx b/shell/source/win32/spsupp/COMOpenDocuments.cxx
index b9d2440..088e6d5 100644
--- a/shell/source/win32/spsupp/COMOpenDocuments.cxx
+++ b/shell/source/win32/spsupp/COMOpenDocuments.cxx
@@ -336,7 +336,7 @@ STDMETHODIMP COMOpenDocuments::PromptedOnLastOpen(
 // 3 When the document is not checked out and the document library requires that documents be checked out to be edited, the user can only read the document, or check it out and edit it
 // 4 When the current user has checked it out, the user can only edit the local copy of the document
 STDMETHODIMP COMOpenDocuments::ViewDocument3(
-    IDispatch* /*pdisp*/,      // An Object that represents the window from which the ViewDocmument3 method is being activated
+    IDispatch* /*pdisp*/,      // An Object that represents the window from which the ViewDocument3 method is being activated
     BSTR bstrDocumentLocation, // A string that contains the URL of the document to open for reading
     int /*OpenType*/,          // A Long integer that specifies the rights for opening the document
     VARIANT /*varProgID*/,     // An optional string that contains the ProgID of the application with which to open the document. If this argument is omitted, the default viewer for the document is used


More information about the Libreoffice-commits mailing list