summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-11-28 10:27:19 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-11-28 10:27:19 +0100
commitf7c40316412e5c2160c89514e7bd0c9f6a2915b3 (patch)
treed049e2629363b27200d69fbd0f5cdbf8b20b2c0d /desktop
parent265c953584f8a1e3a832dd92dc2198056438b418 (diff)
Revert "Remove extra "=" symbol for "--splash-pipe" argument"
This reverts commit 87a098e3bb72910399473ee0fbe32a70cad9c737: '--splash-pipe=N' is a "private" command line argument between oosplash (desktop/unx/source/start.c) and soffice.bin (desktop/source/splash/unxsplash.cxx). No need to silently accept a bogus '--splash-pipe' (without '=' part) provided by the user.
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/cmdlineargs.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/cmdlineargs.cxx b/desktop/source/app/cmdlineargs.cxx
index 443a87a1721a..112fa580ad6b 100644
--- a/desktop/source/app/cmdlineargs.cxx
+++ b/desktop/source/app/cmdlineargs.cxx
@@ -329,7 +329,7 @@ void CommandLineArgs::ParseCommandLine_Impl( Supplier& supplier )
{
m_version = true;
}
- else if ( oArg.startsWith("splash-pipe") )
+ else if ( oArg.startsWith("splash-pipe=") )
{
m_splashpipe = true;
}