diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-09-29 17:42:11 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2015-09-30 05:53:57 +0000 |
commit | 9e4c87be31732ed076a059128d2e20451697d225 (patch) | |
tree | bfab650dd6d21ac6bbcf0e592ec6bc2e7655acbe /basctl | |
parent | ef1bafb588eb20a5d35df14e79a1a948885c721a (diff) |
Fix typos
Change-Id: Ie0e941d48457d758525353d6c5cf858652f86fd3
Reviewed-on: https://gerrit.libreoffice.org/18938
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/layout.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/linenumberwindow.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/moduldl2.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/layout.cxx b/basctl/source/basicide/layout.cxx index e9b1356c107e..032334040750 100644 --- a/basctl/source/basicide/layout.cxx +++ b/basctl/source/basicide/layout.cxx @@ -274,7 +274,7 @@ void Layout::SplittedSide::ArrangeIn (Rectangle const& rRect) // the length of the side long const nLength = bVertical ? aRect.GetSize().Height() : aRect.GetSize().Width(); long const nOtherSize = bVertical ? aRect.GetSize().Width() : aRect.GetSize().Height(); - // bVertical ? horizontal pozition : vertical pozition + // bVertical ? horizontal position : vertical position long const nPos1 = (bVertical ? aRect.Left() : aRect.Top()) + (bLower ? 0 : nOtherSize - (nSize - nSplitThickness)); // bVertical ? vertical position : horizontal position diff --git a/basctl/source/basicide/linenumberwindow.cxx b/basctl/source/basicide/linenumberwindow.cxx index d1b96102adc2..298f4d02bf6a 100644 --- a/basctl/source/basicide/linenumberwindow.cxx +++ b/basctl/source/basicide/linenumberwindow.cxx @@ -69,7 +69,7 @@ void LineNumberWindow::Paint( vcl::RenderContext& rRenderContext, const Rectangl // rather than doing that re-calculation at each Paint event m_nBaseWidth = GetTextWidth("8"); - // reserve enough for 3 digit minimum, with a bit to spare for confort + // reserve enough for 3 digit minimum, with a bit to spare for comfort m_nWidth = m_nBaseWidth * 3 + m_nBaseWidth / 2; sal_uInt32 i = (nEndLine + 1) / 1000; while (i) diff --git a/basctl/source/basicide/moduldl2.cxx b/basctl/source/basicide/moduldl2.cxx index 700fde648310..9918f827962e 100644 --- a/basctl/source/basicide/moduldl2.cxx +++ b/basctl/source/basicide/moduldl2.cxx @@ -1134,7 +1134,7 @@ void LibPage::Export() else ExportAsBasic( aLibName ); } - catch(const util::VetoException& ) // user cancled operation + catch(const util::VetoException& ) // user canceled operation { } } |