diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
commit | b0089ca4d5998548dbbfbc1dec8414fe8f7c557f (patch) | |
tree | a5d50a3d1d57454293a93789de5423db53b512e8 /cpp/src/slice2docbook/Main.cpp | |
parent | bug 3961 - change Application classes to use process logger (diff) | |
download | ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.bz2 ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.xz ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.zip |
Bug 1535 - remove --case-sensitive option form slice compilers
Diffstat (limited to 'cpp/src/slice2docbook/Main.cpp')
-rw-r--r-- | cpp/src/slice2docbook/Main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
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<string> 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; |