summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-17 12:52:01 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-17 17:07:06 +0200
commitd68682625ad0bd4ed121f01721eb0b962fefd1dc (patch)
tree6c956007d2eac8d7abcb0e6a5cde5ce4f909518d /sc
parent902f09e49fa5c5f016f5ea82e184a34d85ba2dea (diff)
Fix typos
Change-Id: I1a77a08fb565e61ca2e277cdc4d78daf52e5fae9 Reviewed-on: https://gerrit.libreoffice.org/77632 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbapane.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/vba/vbapane.cxx b/sc/source/ui/vba/vbapane.cxx
index 88f523bfbde5..1f7f0b540565 100644
--- a/sc/source/ui/vba/vbapane.cxx
+++ b/sc/source/ui/vba/vbapane.cxx
@@ -50,7 +50,7 @@ ScVbaPane::setScrollColumn( sal_Int32 _scrollcolumn )
{
if( _scrollcolumn < 1 )
{
- throw uno::RuntimeException("Column number should not less than 1" );
+ throw uno::RuntimeException("Column number should not be less than 1" );
}
m_xViewPane->setFirstVisibleColumn( _scrollcolumn - 1 );
}
@@ -66,7 +66,7 @@ ScVbaPane::setScrollRow( sal_Int32 _scrollrow )
{
if( _scrollrow < 1 )
{
- throw uno::RuntimeException("Row number should not less than 1" );
+ throw uno::RuntimeException("Row number should not be less than 1" );
}
m_xViewPane->setFirstVisibleRow( _scrollrow - 1 );
}