From eb7185a168dbe454891c8d4be610935e6ff0008b Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 23 Feb 2013 19:17:03 +0100 Subject: Fix typo begining/beginning. Change-Id: I9fff386181a2be0bc83787c8b5aec9c1cb4db9c3 --- sc/qa/unit/subsequent_filters-test.cxx | 2 +- sc/source/ui/app/inputwin.cxx | 2 +- sc/source/ui/vba/vbarange.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'sc') diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index 830116ab5e16..8c9b21ac2dbc 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -1895,7 +1895,7 @@ void ScFiltersTest::testMiscRowHeights() { TestParam::RowData DfltRowData[] = { - // check rows at the begining and end of document + // check rows at the beginning and end of document // and make sure they are reported as the default row // height ( indicated by -1 ) { 2, 4, 0, -1, 0, false }, diff --git a/sc/source/ui/app/inputwin.cxx b/sc/source/ui/app/inputwin.cxx index 7a346b237181..bd2cc81d8614 100644 --- a/sc/source/ui/app/inputwin.cxx +++ b/sc/source/ui/app/inputwin.cxx @@ -1224,7 +1224,7 @@ IMPL_LINK(ScMultiTextWnd, NotifyHdl, EENotify*, pNotify) { // need to process EE_NOTIFY_TEXTVIEWSCROLLED here // sometimes we don't seem to get EE_NOTIFY_TEXTVIEWSCROLLED e.g. when - // we insert text at the begining of the text so the cursor never moves + // we insert text at the beginning of the text so the cursor never moves // down to generate a scroll event if ( pNotify && ( pNotify->eNotificationType == EE_NOTIFY_TEXTVIEWSCROLLED diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx index ab94414c892b..2f9e6421644b 100644 --- a/sc/source/ui/vba/vbarange.cxx +++ b/sc/source/ui/vba/vbarange.cxx @@ -3226,7 +3226,7 @@ ScVbaRange::Find( const uno::Any& What, const uno::Any& After, const uno::Any& L uno::Reference< uno::XInterface > xInterface = xStartCell.is() ? xSearch->findNext( xStartCell, xDescriptor) : xSearch->findFirst( xDescriptor ); uno::Reference< table::XCellRange > xCellRange( xInterface, uno::UNO_QUERY ); // if we are searching from a starting cell and failed to find a match - // then try from the begining + // then try from the beginning if ( !xCellRange.is() && xStartCell.is() ) { xInterface = xSearch->findFirst( xDescriptor ); -- cgit