From 8937fac2167d9c62479f3f6a57c50a35c900c00d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 11 Apr 2013 15:47:46 +0200 Subject: uno-skeletonmaker does not bootstrap UNO ...so mentioning env:INIFILENAME and env:UNO_TYPES is misleading. Change-Id: Ia91ad691c58d226bc445b3355dffb82ba7ddbef5 --- unodevtools/source/skeletonmaker/skeletonmaker.cxx | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) (limited to 'unodevtools') diff --git a/unodevtools/source/skeletonmaker/skeletonmaker.cxx b/unodevtools/source/skeletonmaker/skeletonmaker.cxx index 0ef5d2471597..b3937932ee7d 100644 --- a/unodevtools/source/skeletonmaker/skeletonmaker.cxx +++ b/unodevtools/source/skeletonmaker/skeletonmaker.cxx @@ -47,10 +47,6 @@ static const char usageText[] = " name(s) and the corresponding command(s) have to be specified with the\n" " '-p' option.\n" "\n options:\n" -" -env:INIFILENAME= url specifies a URL to an UNO ini|rc file of an\n" -" existing UNO environment (URE, office installation).\n" -" -env:UNO_TYPES= url specifies a binary type library file. It can be\n" -" a space separated list of urls.\n" " -a, --all list all interface methods, not only the direct\n" " ones\n" " --(java4|java5|cpp) select the target language\n" @@ -82,9 +78,7 @@ static const char usageText[] = " sub-command 'component'. If path=stdout the generated\n" " code is generated on standard out instead of a file.\n" " -l specifies a binary type library (can be used more\n" -" than once). The type library is integrated as an\n" -" additional type provider in the bootstrapped type\n" -" system.\n" +" than once).\n" " -n specifies an implementation name for the component\n" " (used as classname, filename and package|namespace\n" " name). In 'dump' mode it is used as classname (e.g.\n" @@ -107,17 +101,13 @@ static const char usageText[] = void printUsageAndExit(const char* programname, const char* version) { std::cerr - << "\n using: " << programname - << " (-env:INIFILENAME= | -env:UNO_TYPES=)\n" + << "\n using: " << programname << "\n" << " dump [] -t ...\n" - << " " << programname - << " (-env:INIFILENAME= | -env:UNO_TYPES=)\n" + << " " << programname << "\n" << " component [] -n -t ...\n" - << " " << programname - << " (-env:INIFILENAME= | -env:UNO_TYPES=)\n" + << " " << programname << "\n" << " calc-add-in [] -n -t \n" - << " " << programname - << " (-env:INIFILENAME= | -env:UNO_TYPES=)\n" + << " " << programname << "\n" << " add-on [] -n -p \n" << " " << programname << " -V, --version\n" << " " << programname << " -h, --help\n" -- cgit