summaryrefslogtreecommitdiff
path: root/cpputools
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2002-05-22 11:54:28 +0000
committerJörg Budischewski <jbu@openoffice.org>2002-05-22 11:54:28 +0000
commitff267c4363e37f8181644a1c529789c6c8e4fd73 (patch)
treeefca16eba30d189272e1705d9b93148b209356c5 /cpputools
parent9a327a66bbd8159b52c08b1c975dea5c48adbdba (diff)
#99361# regcomp now ignores bootstrap parameters on command line
Diffstat (limited to 'cpputools')
-rw-r--r--cpputools/source/registercomponent/registercomponent.cxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/cpputools/source/registercomponent/registercomponent.cxx b/cpputools/source/registercomponent/registercomponent.cxx
index 27a8faa55b11..7d179e7cfc93 100644
--- a/cpputools/source/registercomponent/registercomponent.cxx
+++ b/cpputools/source/registercomponent/registercomponent.cxx
@@ -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 " );