diff options
Diffstat (limited to 'desktop')
-rwxr-xr-x | desktop/unx/source/start.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c index 4843835b91bb..fcb2daf461ab 100755 --- a/desktop/unx/source/start.c +++ b/desktop/unx/source/start.c @@ -878,6 +878,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv ) { int fd = 0; sal_Bool bSentArgs = sal_False; + const char* pUsePlugin; rtl_uString *pPipePath = NULL; Args *args; @@ -898,6 +899,10 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv ) args->bInhibitSplash = sal_True; #endif + pUsePlugin = getenv( "SAL_USE_VCLPLUGIN" ); + if ( pUsePlugin && !strcmp(pUsePlugin, "svp") ) + args->bInhibitSplash = sal_True; + pPipePath = get_pipe_path( args->pAppPath ); if ( ( fd = connect_pipe( pPipePath ) ) >= 0 ) |