From b0089ca4d5998548dbbfbc1dec8414fe8f7c557f Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Mon, 20 Apr 2009 15:30:28 -0230 Subject: Bug 1535 - remove --case-sensitive option form slice compilers --- cpp/src/slice2docbook/Main.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'cpp/src/slice2docbook/Main.cpp') diff --git a/cpp/src/slice2docbook/Main.cpp b/cpp/src/slice2docbook/Main.cpp index e7cca665ef7..48e2f0a6183 100644 --- a/cpp/src/slice2docbook/Main.cpp +++ b/cpp/src/slice2docbook/Main.cpp @@ -52,7 +52,6 @@ usage(const char* n) "-d, --debug Print debug messages.\n" "--ice Permit `Ice' prefix (for building Ice source code only)\n" ; - // Note: --case-sensitive is intentionally not shown here! } int @@ -71,7 +70,6 @@ main(int argc, char* argv[]) opts.addOpt("", "sort-fields"); opts.addOpt("d", "debug"); opts.addOpt("", "ice"); - opts.addOpt("", "case-sensitive"); vector args; try @@ -134,8 +132,6 @@ main(int argc, char* argv[]) bool ice = opts.isSet("ice"); - bool caseSensitive = opts.isSet("case-sensitive"); - if(args.empty()) { getErrorStream() << argv[0] << ": error: no docbook file specified" << endl; @@ -163,7 +159,7 @@ main(int argc, char* argv[]) return EXIT_FAILURE; } - UnitPtr p = Unit::createUnit(true, false, ice, caseSensitive); + UnitPtr p = Unit::createUnit(true, false, ice); int status = EXIT_SUCCESS; -- cgit v1.2.3