summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfx2/source/inc/StyleList.hxx4
-rw-r--r--tools/qa/cppunit/test_rectangle.cxx2
-rw-r--r--vcl/qt5/Qt5Frame.cxx2
3 files changed, 4 insertions, 4 deletions
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;