[Libreoffice-commits] core.git: sd/source

Andrea Gelmini andrea.gelmini at gelma.net
Wed Sep 30 03:19:13 PDT 2015


 sd/source/ui/dlg/tpaction.cxx                                 |    2 +-
 sd/source/ui/dlg/tpoption.cxx                                 |    2 +-
 sd/source/ui/framework/configuration/ConfigurationUpdater.hxx |    2 +-
 sd/source/ui/framework/factories/FullScreenPane.cxx           |    2 +-
 sd/source/ui/func/fudraw.cxx                                  |    2 +-
 sd/source/ui/func/fumorph.cxx                                 |    2 +-
 sd/source/ui/func/fuprlout.cxx                                |    2 +-
 sd/source/ui/inc/AccessibleDrawDocumentView.hxx               |    2 +-
 sd/source/ui/inc/SlideSorter.hxx                              |    2 +-
 sd/source/ui/inc/ViewShellManager.hxx                         |    4 ++--
 sd/source/ui/inc/Window.hxx                                   |    2 +-
 sd/source/ui/inc/framework/FrameworkHelper.hxx                |    2 +-
 sd/source/ui/inc/framework/ModuleController.hxx               |    2 +-
 sd/source/ui/inc/framework/Pane.hxx                           |    2 +-
 sd/source/ui/inc/taskpane/TitleBar.hxx                        |    2 +-
 15 files changed, 16 insertions(+), 16 deletions(-)

New commits:
commit 5566a469c8d82cdd7762996e7ed2d99737fd16b8
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
Date:   Wed Sep 30 12:15:36 2015 +0200

    Fix typos
    
    Change-Id: Ic205d774251cd5657cc5ba66ab548935aeaf1eb5
    Reviewed-on: https://gerrit.libreoffice.org/18973
    Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
    Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>

diff --git a/sd/source/ui/dlg/tpaction.cxx b/sd/source/ui/dlg/tpaction.cxx
index 2ca2a22..9f11609 100644
--- a/sd/source/ui/dlg/tpaction.cxx
+++ b/sd/source/ui/dlg/tpaction.cxx
@@ -733,7 +733,7 @@ void SdTPAction::SetEditText( OUString const & rStr )
             if( comphelper::string::getTokenCount(rStr, DOCUMENT_TOKEN) == 2 )
                 aText = rStr.getToken( 0, DOCUMENT_TOKEN );
 
-            // fallthrough inteded
+            // fallthrough intended
         case presentation::ClickAction_SOUND:
         case presentation::ClickAction_PROGRAM:
             {
diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index c4177e8..8fef0a3 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -73,7 +73,7 @@ bool SdTpOptionsSnap::FillItemSet( SfxItemSet* rAttrs )
 
     rAttrs->Put( aOptsItem );
 
-    // we get a possible existing GridItem, this ensures that we do net set
+    // we get a possible existing GridItem, this ensures that we do not set
     // some default values by accident
     return true;
 }
diff --git a/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx b/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx
index fb7209e..11658fc 100644
--- a/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx
+++ b/sd/source/ui/framework/configuration/ConfigurationUpdater.hxx
@@ -107,7 +107,7 @@ private:
 
     /** This flag is set to </sal_True> when an update of the current
         configurtion was requested (because the last request in the queue
-        was processed) but could not be exected because the
+        was processed) but could not be executed because the
         ConfigurationController was locked.  A call to UpdateConfiguration()
         resets the flag to </sal_False>.
     */
diff --git a/sd/source/ui/framework/factories/FullScreenPane.cxx b/sd/source/ui/framework/factories/FullScreenPane.cxx
index aa05a31..1ebbb73 100644
--- a/sd/source/ui/framework/factories/FullScreenPane.cxx
+++ b/sd/source/ui/framework/factories/FullScreenPane.cxx
@@ -67,7 +67,7 @@ FullScreenPane::FullScreenPane (
     mpWorkWindow->SetBackground(Wallpaper());
     // Don't show the window right now in order to allow the setting of an
     // accessibility object: accessibility objects are typically
-    // requested by AT-tools when the window is shown.  Chaning it
+    // requested by AT-tools when the window is shown. Chaining it
     // afterwards may or may not work.
 
     // Add resize listener at the work window.
diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx
index 2d34ed6..87fd5f4 100644
--- a/sd/source/ui/func/fudraw.cxx
+++ b/sd/source/ui/func/fudraw.cxx
@@ -403,7 +403,7 @@ bool FuDraw::KeyInput(const KeyEvent& rKEvt)
                 // changeover to the next object
                 if(!mpView->MarkNextObj( !aCode.IsShift() ))
                 {
-                    //If there is only one object, don't do the UnmarkAlllObj() & MarkNextObj().
+                    //If there is only one object, don't do the UnmarkAllObj() & MarkNextObj().
                     if ( mpView->GetMarkableObjCount() > 1 && mpView->AreObjectsMarked() )
                     {
                         // No next object: go over open end and get first from
diff --git a/sd/source/ui/func/fumorph.cxx b/sd/source/ui/func/fumorph.cxx
index a1e25ba..4f9d2cf 100644
--- a/sd/source/ui/func/fumorph.cxx
+++ b/sd/source/ui/func/fumorph.cxx
@@ -106,7 +106,7 @@ void FuMorph::DoExecute( SfxRequest& )
             pDlg->SaveSettings();
 
             // #i48168# Not always is the pPolyObj1/pPolyObj2 a SdrPathObj, it may also be a group object
-            // containing SdrPathObjs. To get the polygons, i add two iters here
+            // containing SdrPathObjs. To get the polygons, I add two iters here
             SdrObjListIter aIter1(*pPolyObj1);
             SdrObjListIter aIter2(*pPolyObj2);
 
diff --git a/sd/source/ui/func/fuprlout.cxx b/sd/source/ui/func/fuprlout.cxx
index b782e6f..01993ba 100644
--- a/sd/source/ui/func/fuprlout.cxx
+++ b/sd/source/ui/func/fuprlout.cxx
@@ -207,7 +207,7 @@ void FuPresentationLayout::DoExecute( SfxRequest& rReq )
         /* Here, we only exchange masterpages, therefore the current page
            remains the current page. To prevent calling PageOrderChangedHint
            during insertion and extraction of the masterpages, we block. */
-        /* That isn't quitely right. If the masterpageview is active and you are
+        /* That isn't quite right. If the masterpageview is active and you are
            removing a masterpage, it's possible that you are removing the
            current masterpage. So you have to call ResetActualPage ! */
         if( mpViewShell->ISA(DrawViewShell) && !bCheckMasters )
diff --git a/sd/source/ui/inc/AccessibleDrawDocumentView.hxx b/sd/source/ui/inc/AccessibleDrawDocumentView.hxx
index 73b6e70..b60eadb 100644
--- a/sd/source/ui/inc/AccessibleDrawDocumentView.hxx
+++ b/sd/source/ui/inc/AccessibleDrawDocumentView.hxx
@@ -127,7 +127,7 @@ protected:
     /** Select or deselect the specified child or all children if the given
         index has the special value ACCESSIBLE_SELECTION_CHILD_ALL.
         Selecting or deselecting a child sets or resets the
-        <const>SELECTED</const> state and selects or deslects the UNO shape
+        <const>SELECTED</const> state and selects or deselects the UNO shape
         being made accessible by the child.
         @param nAccessibleChildIndex
             Index of the child to select or deselect.  If the parameter has
diff --git a/sd/source/ui/inc/SlideSorter.hxx b/sd/source/ui/inc/SlideSorter.hxx
index 0b7273a..d49b06e 100644
--- a/sd/source/ui/inc/SlideSorter.hxx
+++ b/sd/source/ui/inc/SlideSorter.hxx
@@ -101,7 +101,7 @@ public:
         ScrollBar* pVerticalScrollBar,
         ScrollBarBox* pScrollBarBox);
 
-    /** Create a new slide sorter that is losely coupled to the given view
+    /** Create a new slide sorter that is loosely coupled to the given view
         shell.  The view shell may even be missing.
         @param rBase
             ViewShellBase object of the enclosing application.
diff --git a/sd/source/ui/inc/ViewShellManager.hxx b/sd/source/ui/inc/ViewShellManager.hxx
index 3b30fcc..7ffb1e3 100644
--- a/sd/source/ui/inc/ViewShellManager.hxx
+++ b/sd/source/ui/inc/ViewShellManager.hxx
@@ -35,8 +35,8 @@ class ViewShellBase;
     and sub shells on the SFX shell stack.  They form a two level hierarchy
     (the underlying ViewShellBase, the only true SfxViewShell descendant,
     forms a third level.)  On the first level there are the view shells
-    (what formely was called view shell, anyway; nowadays they are derived
-    from SfxShell.) and shells for panes. On the second level there are sub
+    (what formerly was called view shell, anyway; nowadays they are derived
+    from SfxShell) and shells for panes. On the second level there are sub
     shells (also derived from SfxShell) that usually are tool bars.
 
     <p>On the SFX shell stack the regular sub shells are placed above their
diff --git a/sd/source/ui/inc/Window.hxx b/sd/source/ui/inc/Window.hxx
index b615356..f09d0ae 100644
--- a/sd/source/ui/inc/Window.hxx
+++ b/sd/source/ui/inc/Window.hxx
@@ -158,7 +158,7 @@ protected:
     sal_uInt16 mnMaxZoom;
 
     /** This flag tells whether to re-calculate the minimal zoom factor
-        depening on the current zoom factor.  Its default value is now false.
+        depending on the current zoom factor.  Its default value is now false.
     */
     bool mbMinZoomAutoCalc;
     bool mbCalcMinZoomByMinSide;
diff --git a/sd/source/ui/inc/framework/FrameworkHelper.hxx b/sd/source/ui/inc/framework/FrameworkHelper.hxx
index c5a688d..36dfe6d 100644
--- a/sd/source/ui/inc/framework/FrameworkHelper.hxx
+++ b/sd/source/ui/inc/framework/FrameworkHelper.hxx
@@ -45,7 +45,7 @@ namespace sd { namespace framework {
     It has three main tasks:
     1. Provide frequently used strings of resource URLs and event names.
     2. Provide shortcuts for accessing the sd framework.
-    3. Ease the migration to the drawing framwork.
+    3. Ease the migration to the drawing framework.
 
     Note that a FrameworkHelper disposes itself when one of the resource
     controllers called by it throws a DisposedException.
diff --git a/sd/source/ui/inc/framework/ModuleController.hxx b/sd/source/ui/inc/framework/ModuleController.hxx
index 2660011..6edab02 100644
--- a/sd/source/ui/inc/framework/ModuleController.hxx
+++ b/sd/source/ui/inc/framework/ModuleController.hxx
@@ -57,7 +57,7 @@ namespace sd { namespace framework {
 
     2. The ModuleController reads on its creation
     org.openoffice.Office.Impress/MultiPaneGUI/Framework/StartupServices
-    configuration data and instantiates all listed services.  These servces
+    configuration data and instantiates all listed services.  These services
     can then register as listeners at the ConfigurationController or do
     whatever they like.
 */
diff --git a/sd/source/ui/inc/framework/Pane.hxx b/sd/source/ui/inc/framework/Pane.hxx
index 2bd3ea1..782543a 100644
--- a/sd/source/ui/inc/framework/Pane.hxx
+++ b/sd/source/ui/inc/framework/Pane.hxx
@@ -122,7 +122,7 @@ public:
         SAL_CALL getResourceId()
         throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 
-    /** For the typical pane it makes no sense to be dislayed without a
+    /** For the typical pane it makes no sense to be displayed without a
         view.  Therefore this default implementation returns always <TRUE/>.
     */
     virtual sal_Bool SAL_CALL isAnchorOnly()
diff --git a/sd/source/ui/inc/taskpane/TitleBar.hxx b/sd/source/ui/inc/taskpane/TitleBar.hxx
index a51cf20..bb4088f 100644
--- a/sd/source/ui/inc/taskpane/TitleBar.hxx
+++ b/sd/source/ui/inc/taskpane/TitleBar.hxx
@@ -105,7 +105,7 @@ private:
 
     /** Return the image of the expansion indicator.
         @return
-            When there is no expansion indictor for this TitleBar object,
+            When there is no expansion indicator for this TitleBar object,
             then an empty Image is returned.  You better call
             HasExpansionIndicator() to prevent this.
     */


More information about the Libreoffice-commits mailing list