summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-23 19:17:03 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-23 19:17:03 +0100
commiteb7185a168dbe454891c8d4be610935e6ff0008b (patch)
tree8b3b1583c08d709bfebfafd17634fb88b944f3f0 /sc/source/ui/vba
parent2dca0ccf0760a64eab986c178873926a6a125cc5 (diff)
Fix typo begining/beginning.
Change-Id: I9fff386181a2be0bc83787c8b5aec9c1cb4db9c3
Diffstat (limited to 'sc/source/ui/vba')
-rw-r--r--sc/source/ui/vba/vbarange.cxx2
1 files changed, 1 insertions, 1 deletions
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 );