#99361# regcomp now ignores bootstrap parameters on command line

This commit is contained in:
Jörg Budischewski 2002-05-22 11:54:28 +00:00
parent 9a327a66bb
commit ff267c4363

View file

@ -2,9 +2,9 @@
*
* $RCSfile: registercomponent.cxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: jbu $ $Date: 2002-03-07 13:07:09 $
* last change: $Author: jbu $ $Date: 2002-05-22 12:54:28 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -336,6 +336,14 @@ sal_Bool parseOptions(int ac, char* av[], Options& rOptions, sal_Bool bCmdFile)
}
break;
}
case 'e':
{
if( av[i][2] == 'n' && av[i][3] == 'v' && av[i][4] == ':' )
{
// bootstrap variable, ignore it
break;
}
}
default:
{
OString tmp( "unknown option " );