diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-07-19 16:22:39 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-07-19 18:54:50 +0200 |
commit | da9bb5165152bfa00425c08cf46d6a3775da0a1b (patch) | |
tree | 1cc5cbf0ecd8d22c44f9a22e4bf0ba24ea70702e | |
parent | 35c4e29e53210e785dc12931a3c9dc841a565f84 (diff) |
Fix typos
Change-Id: Id31aa22a98f7520a37e624cbb1dc4d949246c0fb
Reviewed-on: https://gerrit.libreoffice.org/57622
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | setup_native/scripts/langpackscript.sh | 4 | ||||
-rw-r--r-- | vcl/qt5/Qt5Widget.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/setup_native/scripts/langpackscript.sh b/setup_native/scripts/langpackscript.sh index 186390c19c05..4f0dd548467b 100644 --- a/setup_native/scripts/langpackscript.sh +++ b/setup_native/scripts/langpackscript.sh @@ -113,8 +113,8 @@ mkdir $outdir #diskSpace=`df -k $outdir | $tail_prog -1 | awk '{if ( $4 ~ /%/) { print $3 } else { print $4 } }'` #if [ $diskSpace -lt $diskSpaceRequired ]; then -# printf "You will need atleast %s kBytes of Disk Free\n" $diskSpaceRequired -# printf "Please free up the required Disk Space and try again\n" +# printf "You will need at least %s kBytes of free disk space\n" $diskSpaceRequired +# printf "Please free up the required disk space and try again\n" # exit 3 #fi diff --git a/vcl/qt5/Qt5Widget.cxx b/vcl/qt5/Qt5Widget.cxx index 8f96bc876322..75f95b40310e 100644 --- a/vcl/qt5/Qt5Widget.cxx +++ b/vcl/qt5/Qt5Widget.cxx @@ -208,7 +208,7 @@ void VclQtMixinBase::mixinCloseEvent(QCloseEvent* pEvent) pEvent->accept(); // SalEvent::Close returning false may mean that user has vetoed // closing the frame ("you have unsaved changes" dialog for example) - // We should't process the event in such case + // We shouldn't process the event in such case else pEvent->ignore(); } |