diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-12-21 11:12:14 -0500 |
commit | 08ec7524df324e627bbb8d93c509f0d90badbe3b (patch) | |
tree | a640ae99a5e35b210352150feef4f71832b265c5 /cpp/src/iceserviceinstall/Install.cpp | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.bz2 ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.tar.xz ice-08ec7524df324e627bbb8d93c509f0d90badbe3b.zip |
IceUtil cleanup (first commit)
Diffstat (limited to 'cpp/src/iceserviceinstall/Install.cpp')
-rwxr-xr-x | cpp/src/iceserviceinstall/Install.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/iceserviceinstall/Install.cpp b/cpp/src/iceserviceinstall/Install.cpp index 336e4a3b820..989c3f5e259 100755 --- a/cpp/src/iceserviceinstall/Install.cpp +++ b/cpp/src/iceserviceinstall/Install.cpp @@ -49,7 +49,7 @@ main(int argc, char* argv[]) int Install::run(int argc, char* argv[]) { - IceUtil::Options opts; + IceUtilInternal::Options opts; opts.addOpt("h", "help"); opts.addOpt("v", "version"); opts.addOpt("u", "uninstall"); @@ -59,7 +59,7 @@ Install::run(int argc, char* argv[]) for(size_t i = 0; i < propNames.size(); ++i) { - opts.addOpt("", propNames[i], IceUtil::Options::NeedArg); + opts.addOpt("", propNames[i], IceUtilInternal::Options::NeedArg); } vector<string> commands; @@ -67,7 +67,7 @@ Install::run(int argc, char* argv[]) { commands = opts.parse(argc, argv); } - catch(const IceUtil::BadOptException& e) + catch(const IceUtilInternal::BadOptException& e) { cerr << "Error:" << e.reason << endl; usage(); |