[Libreoffice-commits] core.git: sfx2/source tools/qa vcl/qt5

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Sun Aug 1 12:22:11 UTC 2021


 sfx2/source/inc/StyleList.hxx       |    4 ++--
 tools/qa/cppunit/test_rectangle.cxx |    2 +-
 vcl/qt5/Qt5Frame.cxx                |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 6bb3a9dde89a11553cc7d9dde13e1390b591a7d5
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Sun Aug 1 12:58:17 2021 +0200
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Sun Aug 1 14:21:35 2021 +0200

    Fix typos
    
    Change-Id: Ib48f6c8e0424e6843d2b3a7b3558d1d8714a80ce
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119792
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/sfx2/source/inc/StyleList.hxx b/sfx2/source/inc/StyleList.hxx
index 65bb21cf9e82..7ab7fafcac02 100644
--- a/sfx2/source/inc/StyleList.hxx
+++ b/sfx2/source/inc/StyleList.hxx
@@ -81,11 +81,11 @@ public:
 
     // This function is used to set a hierarchical view.
     void SetHierarchical();
-    // This function handles the controls while setting a filter except heirarchical
+    // This function handles the controls while setting a filter except hierarchical
     void SetFilterControlsHandle();
     // Return whether treeview is visible
     // It is used in StyleList's UpdateStyles_Hdl
-    // It is used to defaultly set the heirarchical view
+    // It is used to defaultly set the hierarchical view
     bool IsTreeView() { return m_xTreeBox->get_visible(); }
 
     // Dialog and StyleList have their own copies of m_nActFilter
diff --git a/tools/qa/cppunit/test_rectangle.cxx b/tools/qa/cppunit/test_rectangle.cxx
index 4e12b1d5933a..b0bbf6ae1469 100644
--- a/tools/qa/cppunit/test_rectangle.cxx
+++ b/tools/qa/cppunit/test_rectangle.cxx
@@ -48,7 +48,7 @@ void Test::test_rectangle()
         CPPUNIT_ASSERT_EQUAL(tools::Long(1), aRect.GetHeight());
 
         // Annoyingly getWidth and getHeight returns the wrong size
-        // that was explicitly inputed.
+        // that was explicitly input.
         CPPUNIT_ASSERT_EQUAL(tools::Long(0), aRect.getWidth());
         CPPUNIT_ASSERT_EQUAL(tools::Long(0), aRect.getHeight());
 
diff --git a/vcl/qt5/Qt5Frame.cxx b/vcl/qt5/Qt5Frame.cxx
index a4c78d1b71a7..2c2b439be225 100644
--- a/vcl/qt5/Qt5Frame.cxx
+++ b/vcl/qt5/Qt5Frame.cxx
@@ -147,7 +147,7 @@ Qt5Frame::Qt5Frame(Qt5Frame* pParent, SalFrameStyleFlags nStyle, bool bUseCairo)
         else if (nStyle & SalFrameStyleFlags::TOOLTIP)
             aWinFlags |= Qt::ToolTip;
         // Can't use Qt::Popup, because it grabs the input focus and generates
-        // a focus-out event, reaking the compbo box. This used to map to
+        // a focus-out event, reaching the combo box. This used to map to
         // Qt::ToolTip, which doesn't feel that correct...
         else if (isPopup())
             aWinFlags = Qt::Widget | Qt::FramelessWindowHint | Qt::BypassWindowManagerHint;


More information about the Libreoffice-commits mailing list