[Libreoffice-commits] core.git: dbaccess/source framework/source sc/source slideshow/source

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Tue Sep 10 13:08:51 UTC 2019


 dbaccess/source/ui/querydesign/QueryDesignView.cxx |    2 +-
 framework/source/services/frame.cxx                |   18 +++++++++---------
 sc/source/ui/view/gridwin2.cxx                     |    2 +-
 slideshow/source/engine/shapes/drawshape.hxx       |    2 +-
 4 files changed, 12 insertions(+), 12 deletions(-)

New commits:
commit d8bd31af915136d2453da25f1500f036a1f8cfd1
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Tue Sep 10 14:36:16 2019 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Tue Sep 10 15:08:15 2019 +0200

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

diff --git a/dbaccess/source/ui/querydesign/QueryDesignView.cxx b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
index b0a7129f8eaf..7b1392745f33 100644
--- a/dbaccess/source/ui/querydesign/QueryDesignView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryDesignView.cxx
@@ -2915,7 +2915,7 @@ std::unique_ptr<OSQLParseNode> OQueryDesignView::getPredicateTreeFromEntry(const
     // special handling for functions
     if ( pEntry->GetFunctionType() & (FKT_OTHER | FKT_AGGREGATE | FKT_NUMERIC) )
     {
-        // we have a function here so we have to distinguish the type of return vOUalue
+        // we have a function here so we have to distinguish the type of return value
         OUString sFunction;
         if ( pEntry->isNumericOrAggregateFunction() )
             sFunction = pEntry->GetFunction().getToken(0, '(');
diff --git a/framework/source/services/frame.cxx b/framework/source/services/frame.cxx
index 5bd178295bc3..e4cc05c5567a 100644
--- a/framework/source/services/frame.cxx
+++ b/framework/source/services/frame.cxx
@@ -856,7 +856,7 @@ css::uno::Reference< css::awt::XWindow > SAL_CALL XFrameImpl::getContainerWindow
     @seealso    getCreator()
     @seealso    findFrame()
     @seealso    isTop()
-    @seealos    m_bIsFrameTop
+    @seealso    m_bIsFrameTop
 
     @param      xCreator
                     valid reference to our new owner frame, which should implement a supplier interface
@@ -2539,7 +2539,7 @@ void SAL_CALL XFrameImpl::windowClosing( const css::lang::EventObject& )
     deactivate();
 
     // ... and try to close it
-    // But do it asynchron inside the main thread.
+    // But do it asynchronous inside the main thread.
     // VCL has no fun to do such things outside his main thread :-(
     // Note: The used dispatch make it asynchronous for us .-)
 
@@ -2660,8 +2660,8 @@ void SAL_CALL XFrameImpl::disposing( const css::lang::EventObject& aEvent )
                 Otherwise task couldn't die anymore!!!
 
     @seealso    interface XActionLockable
-    @seeelso    method BaseDispatcher::implts_loadIt()
-    @seeelso    method Desktop::loadComponentFromURL()
+    @seealso    method BaseDispatcher::implts_loadIt()
+    @seealso    method Desktop::loadComponentFromURL()
     @return     true if frame/task is locked
                 false otherwise
     @threadsafe yes
@@ -3073,10 +3073,10 @@ void XFrameImpl::implts_setIconOnWindow()
 }
 
 /*-************************************************************************************************************
-    @short      helper to start/stop listeneing for window events on container window
+    @short      helper to start/stop listening for window events on container window
     @descr      If we get a new container window, we must set it on internal member ...
                 and stop listening at old one ... and start listening on new one!
-                But sometimes (in dispose() call!) it's necessary to stop listeneing without starting
+                But sometimes (in dispose() call!) it's necessary to stop listening without starting
                 on new connections. So we split this functionality to make it easier at use.
 
     @seealso    method initialize()
@@ -3273,7 +3273,7 @@ void XFrameImpl::impl_checkMenuCloser()
     // But we can enable this closer only, if one of these two tasks includes the help module.
     // The "other frame" couldn't be the help. Because then it wouldn't be part of this "other list".
     // In such case it will be separated to the reference aAnalyzer.m_xHelp!
-    // But we must check, if weself includes the help...
+    // But we must check, if we include ourself the help...
     // Check aAnalyzer.m_bReferenceIsHelp!
     if (
         (aAnalyzer.m_lOtherVisibleFrames.size()==1)   &&
@@ -3289,8 +3289,8 @@ void XFrameImpl::impl_checkMenuCloser()
     }
 
     // b)
-    // There is no other frame ... means no other document frame. The help module
-    // will be handled separately and must(!) be ignored here ... excepting weself includes the help.
+    // There is no other frame... means no other document frame. The help module
+    // will be handled separately and must(!) be ignored here... excepting if we include ourself the help.
     else if (
         (aAnalyzer.m_lOtherVisibleFrames.empty()) &&
         (!aAnalyzer.m_bReferenceIsHelp) &&
diff --git a/sc/source/ui/view/gridwin2.cxx b/sc/source/ui/view/gridwin2.cxx
index dcbf78acdaf3..1a73d80d37a7 100644
--- a/sc/source/ui/view/gridwin2.cxx
+++ b/sc/source/ui/view/gridwin2.cxx
@@ -1015,7 +1015,7 @@ void ScGridWindow::PagebreakMove( const MouseEvent& rMEvt, bool bUp )
                     }
                     if ( bGrow )
                     {
-                        // change last break to hard, and change scaleing
+                        // change last break to hard, and change scaling
                         bool bManualBreak(rDoc.HasRowBreak(nPagebreakPrev, nTab) & ScBreakType::Manual);
                         if ( nPagebreakPrev > aPagebreakSource.aStart.Row() && !bManualBreak )
                         {
diff --git a/slideshow/source/engine/shapes/drawshape.hxx b/slideshow/source/engine/shapes/drawshape.hxx
index c93f0338f76c..e014f0cb1979 100644
--- a/slideshow/source/engine/shapes/drawshape.hxx
+++ b/slideshow/source/engine/shapes/drawshape.hxx
@@ -220,7 +220,7 @@ namespace slideshow
                 When true, the source of the shape metafile might be a
                 foreign application. The metafile is checked against
                 unsupported content, and, if necessary, returned as a
-                pre-rendererd bitmap.
+                pre-rendered bitmap.
              */
             DrawShape( const css::uno::Reference<
                             css::drawing::XShape >&    xShape,


More information about the Libreoffice-commits mailing list