diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-11 18:32:30 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-12 11:40:36 +0200 |
commit | 5eb6f2d08d133a042a5dbd450bdb206f39399ce4 (patch) | |
tree | 374da2a2a0492a010c49303b6aa0837b15249d60 /solenv/bin | |
parent | ef67f74b791abec6d36c573d1eaf5fbfc1f83c46 (diff) |
Fix typos
Change-Id: Ic431ef6c3555f02fbc204a5b0af5f9bfe62f4a30
Reviewed-on: https://gerrit.libreoffice.org/77286
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/desktop-translate.pl | 2 | ||||
-rwxr-xr-x | solenv/bin/fix-includes.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/desktop-translate.pl b/solenv/bin/desktop-translate.pl index 259e7da752fb..a888fc48ec71 100644 --- a/solenv/bin/desktop-translate.pl +++ b/solenv/bin/desktop-translate.pl @@ -22,7 +22,7 @@ eval 'exec perl -wS $0 ${1+"$@"}' # # Translates multiple .desktop files at once with strings from .ulf -# files; if you add new translateable .ulf files please add them to +# files; if you add new translatable .ulf files please add them to # l10ntools/source/localize.cxx # diff --git a/solenv/bin/fix-includes.pl b/solenv/bin/fix-includes.pl index 740424dcccdb..837fcf2d8cac 100755 --- a/solenv/bin/fix-includes.pl +++ b/solenv/bin/fix-includes.pl @@ -36,7 +36,7 @@ sub check_headers seek $fh,0,0; foreach $line (@content){ if($line =~ m/#include "(\w*)\//){ - # If a include is local and it should be global, make it global + # If an include is local and it should be global, make it global if($1 ~~ @includes){ print "local header $line\n"; $line =~ s/"/</; |