diff options
author | Jose <jose@zeroc.com> | 2013-01-24 23:10:22 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2013-01-24 23:10:22 +0100 |
commit | 47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0 (patch) | |
tree | c32cc6957025399fb9b202e61f44f844bc890811 /cpp/src/IcePatch2/Client.cpp | |
parent | Fix VS2010 compilation warning (diff) | |
download | ice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.tar.bz2 ice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.tar.xz ice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.zip |
Fixed (ICE-4993) - Inconsistent naming of IcePatch2 properties
Diffstat (limited to 'cpp/src/IcePatch2/Client.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/Client.cpp b/cpp/src/IcePatch2/Client.cpp index e8ea78897b2..a4d2d6e7b74 100644 --- a/cpp/src/IcePatch2/Client.cpp +++ b/cpp/src/IcePatch2/Client.cpp @@ -263,7 +263,7 @@ Client::run(int argc, char* argv[]) } if(opts.isSet("thorough")) { - properties->setProperty("IcePatch2.Thorough", "1"); + properties->setProperty("IcePatch2Client.Thorough", "1"); } if(args.size() > 1) @@ -274,7 +274,7 @@ Client::run(int argc, char* argv[]) } if(args.size() == 1) { - properties->setProperty("IcePatch2.Directory", simplify(args[0])); + properties->setProperty("IcePatch2Client.Directory", simplify(args[0])); } bool aborted = false; |