sc/source/ui/vba/vbapane.cxx | 4 ++-- sd/inc/drawdoc.hxx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit d68682625ad0bd4ed121f01721eb0b962fefd1dc Author: Andrea Gelmini <[email protected]> AuthorDate: Sat Aug 17 12:52:01 2019 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Sat Aug 17 17:07:06 2019 +0200 Fix typos Change-Id: I1a77a08fb565e61ca2e277cdc4d78daf52e5fae9 Reviewed-on: https://gerrit.libreoffice.org/77632 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> 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 ); } diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index f824c3cc74a3..52e31ce2b91b 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -331,7 +331,7 @@ public: A list of strings, denoting the names of the pages to be renamed @param bLink - Whether the inserted pages should be links to the bookmark document + Whether the inserted pages should be linked to the bookmark document @param bReplace Whether the pages should not be inserted, but replace the pages in _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
