diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-07-02 18:20:59 +0200 |
---|---|---|
committer | Samuel Mehrbrodt <s.mehrbrodt@gmail.com> | 2015-07-04 10:23:17 +0000 |
commit | ffa8892c5a929ac121fc7b1020d8f6b5b3cf45be (patch) | |
tree | 4633fab92c7f808a932025491e97c5b62509b7f9 /basctl | |
parent | 3dfdd18707019c49723ad98e74f5202a3ae436f7 (diff) |
Fix typos
Change-Id: I75b4ad61785bf0ba1cb07735d938c0977356b8cc
Reviewed-on: https://gerrit.libreoffice.org/16705
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2.cxx | 2 | ||||
-rw-r--r-- | basctl/source/basicide/linenumberwindow.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/baside2.cxx b/basctl/source/basicide/baside2.cxx index 713beeb977bb..39e79b0e31dc 100644 --- a/basctl/source/basicide/baside2.cxx +++ b/basctl/source/basicide/baside2.cxx @@ -196,7 +196,7 @@ SbModuleRef ModulWindow::XModule() // elementInserted event from the BasicLibrary container. // However the SbModule is also created from a different listener to // the same event ( in basmgr ) Therefore it is possible when we look - // for xModule it may not yet be available, here we keep tring to access + // for xModule it may not yet be available, here we keep trying to access // the module until such time as it exists if ( !xModule.Is() ) diff --git a/basctl/source/basicide/linenumberwindow.cxx b/basctl/source/basicide/linenumberwindow.cxx index 0c3ed9156235..20689734e1b1 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 sigit minimum, with a bit to spare for confort + // reserve enough for 3 digit minimum, with a bit to spare for confort m_nWidth = m_nBaseWidth * 3 + m_nBaseWidth / 2; int i = (nEndLine + 1) / 1000; while (i) |