summaryrefslogtreecommitdiffstats
path: root/basctl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-01-04 12:22:58 +0100
committerAshod Nakashian <ashnakash@gmail.com>2016-01-05 13:40:54 +0000
commitfbec6ac08999a36664571dc0b1eba3ba251a5984 (patch)
tree730c79e0fb60c9df6524fbb73ff13cc51320ef6c /basctl
parenttdf#96198 adapt unit test to reality, tdf#50950 follow-up (diff)
downloadcore-fbec6ac08999a36664571dc0b1eba3ba251a5984.tar.gz
core-fbec6ac08999a36664571dc0b1eba3ba251a5984.zip
Fix typos
Change-Id: I3fba2c76c83381eb398c80947ef4849bccf7ab27 Reviewed-on: https://gerrit.libreoffice.org/21078 Reviewed-by: Ashod Nakashian <ashnakash@gmail.com> Tested-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx4
-rw-r--r--basctl/source/basicide/macrodlg.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index 7c8731424cca..59352066349c 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -713,7 +713,7 @@ void EditorWindow::HandleAutoCloseParen()
if( aLine.getLength() > 0 && aLine[aSel.GetEnd().GetIndex()-1] != '(' )
{
GetEditView()->InsertText(")");
- //leave the cursor on it's place: inside the parenthesis
+ //leave the cursor on its place: inside the parenthesis
TextPaM aEnd(nLine, aSel.GetEnd().GetIndex());
GetEditView()->SetSelection( TextSelection( aEnd, aEnd ) );
}
@@ -734,7 +734,7 @@ void EditorWindow::HandleAutoCloseDoubleQuotes()
if( aLine.getLength() > 0 && !aLine.endsWith("\"") && (aPortions.back().tokenType != TT_STRING) )
{
GetEditView()->InsertText("\"");
- //leave the cursor on it's place: inside the two double quotes
+ //leave the cursor on its place: inside the two double quotes
TextPaM aEnd(nLine, aSel.GetEnd().GetIndex());
GetEditView()->SetSelection( TextSelection( aEnd, aEnd ) );
}
diff --git a/basctl/source/basicide/macrodlg.cxx b/basctl/source/basicide/macrodlg.cxx
index 93815bec1c3f..83a5ed471076 100644
--- a/basctl/source/basicide/macrodlg.cxx
+++ b/basctl/source/basicide/macrodlg.cxx
@@ -50,7 +50,7 @@ using namespace ::com::sun::star::uno;
MacroChooser::MacroChooser( vcl::Window* pParnt, bool bCreateEntries )
: SfxModalDialog(pParnt, "BasicMacroDialog", "modules/BasicIDE/ui/basicmacrodialog.ui")
, bNewDelIsDel(true)
- // the Sfx doesn't ask the BasicManger whether modified or not
+ // the Sfx doesn't ask the BasicManager whether modified or not
// => start saving in case of a change without a into the BasicIDE.
, bForceStoreBasic(false)
, nMode(All)