diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-01-04 23:45:49 +0900 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-01-04 10:59:56 -0500 |
commit | d4536ae9fcf55e37ba9a457935ab66ccbc6af98e (patch) | |
tree | dfc709b6db542d75b7eb14ec88dd3343364f2130 | |
parent | 163d89164ebe9d0be0581ccb881ec1ed656f9cf0 (diff) |
prefer the long prefix '--'
-rw-r--r-- | desktop/scripts/sbase.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/scalc.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/sdraw.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/simpress.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/smaster.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/smath.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/sweb.sh | 2 | ||||
-rw-r--r-- | desktop/scripts/swriter.sh | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/desktop/scripts/sbase.sh b/desktop/scripts/sbase.sh index 932a535e53bd..e3a8ed07d5c0 100644 --- a/desktop/scripts/sbase.sh +++ b/desktop/scripts/sbase.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -base "$@" +exec "$cmd" --base "$@" diff --git a/desktop/scripts/scalc.sh b/desktop/scripts/scalc.sh index b1c3eebaff1f..c9c3cde39e49 100644 --- a/desktop/scripts/scalc.sh +++ b/desktop/scripts/scalc.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -calc "$@" +exec "$cmd" --calc "$@" diff --git a/desktop/scripts/sdraw.sh b/desktop/scripts/sdraw.sh index fe0338a89394..4131a2505f48 100644 --- a/desktop/scripts/sdraw.sh +++ b/desktop/scripts/sdraw.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -draw "$@" +exec "$cmd" --draw "$@" diff --git a/desktop/scripts/simpress.sh b/desktop/scripts/simpress.sh index 20cae509b10a..d78ea14207c0 100644 --- a/desktop/scripts/simpress.sh +++ b/desktop/scripts/simpress.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -impress "$@" +exec "$cmd" --impress "$@" diff --git a/desktop/scripts/smaster.sh b/desktop/scripts/smaster.sh index affd55b265b0..ed9b09d51279 100644 --- a/desktop/scripts/smaster.sh +++ b/desktop/scripts/smaster.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -global "$@" +exec "$cmd" --global "$@" diff --git a/desktop/scripts/smath.sh b/desktop/scripts/smath.sh index ae4e3670a8d5..454fa135ff8e 100644 --- a/desktop/scripts/smath.sh +++ b/desktop/scripts/smath.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -math "$@" +exec "$cmd" --math "$@" diff --git a/desktop/scripts/sweb.sh b/desktop/scripts/sweb.sh index 6d814e26e8aa..a365392584b6 100644 --- a/desktop/scripts/sweb.sh +++ b/desktop/scripts/sweb.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -web "$@" +exec "$cmd" --web "$@" diff --git a/desktop/scripts/swriter.sh b/desktop/scripts/swriter.sh index 34ca9fee30c7..3fa48c0d3eba 100644 --- a/desktop/scripts/swriter.sh +++ b/desktop/scripts/swriter.sh @@ -1,4 +1,4 @@ #!/bin/sh cmd=`dirname "$0"`/soffice -exec "$cmd" -writer "$@" +exec "$cmd" --writer "$@" |