diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-19 17:09:40 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-19 17:09:40 +0000 |
commit | 49a3baf241e28c42be6e48c15378ca2a445477cd (patch) | |
tree | 8e2194212d4e5a1527b8bf8281192e3756f25f13 /cppe/src/IceE/Properties.cpp | |
parent | Fixed pe=roperty setting (diff) | |
download | ice-49a3baf241e28c42be6e48c15378ca2a445477cd.tar.bz2 ice-49a3baf241e28c42be6e48c15378ca2a445477cd.tar.xz ice-49a3baf241e28c42be6e48c15378ca2a445477cd.zip |
Renamed properties back to Ice.
Diffstat (limited to 'cppe/src/IceE/Properties.cpp')
-rw-r--r-- | cppe/src/IceE/Properties.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/src/IceE/Properties.cpp b/cppe/src/IceE/Properties.cpp index 0ca5d214305..ea261eb7b41 100644 --- a/cppe/src/IceE/Properties.cpp +++ b/cppe/src/IceE/Properties.cpp @@ -171,7 +171,7 @@ Ice::Properties::parseCommandLineOptions(const string& prefix, const StringSeq& StringSeq Ice::Properties::parseIceCommandLineOptions(const StringSeq& options) { - return parseCommandLineOptions("IceE", options); + return parseCommandLineOptions("Ice", options); } void @@ -217,19 +217,19 @@ Ice::Properties::Properties(StringSeq& args) if(q != args.end()) { // - // Use the first argument as the value for IceE.ProgramName. Replace + // Use the first argument as the value for Ice.ProgramName. Replace // any backslashes in this value with forward slashes, in case this // value is used by the event logger. // string name = *q; replace(name.begin(), name.end(), '\\', '/'); - setProperty("IceE.ProgramName", name); + setProperty("Ice.ProgramName", name); } StringSeq tmp; while(q != args.end()) { string s = *q; - if(s.find("--IceE.Config") == 0) + if(s.find("--Ice.Config") == 0) { if(s.find('=') == string::npos) { @@ -303,7 +303,7 @@ Ice::Properties::parseLine(const string& line) void Ice::Properties::loadConfig() { - string value = getProperty("IceE.Config"); + string value = getProperty("Ice.Config"); #ifndef _WIN32_WCE if(value.empty() || value == "1") @@ -338,5 +338,5 @@ Ice::Properties::loadConfig() } } - setProperty("IceE.Config", value); + setProperty("Ice.Config", value); } |