diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-02-14 18:27:14 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-02-14 18:27:14 +0000 |
commit | 8dd04510f8794776a26c201336b0a5e5d1bd3afb (patch) | |
tree | 69370d5394773fa2a181705e1ef5b31c0a7f93fe /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Added unknown property warnings (diff) | |
download | ice-8dd04510f8794776a26c201336b0a5e5d1bd3afb.tar.bz2 ice-8dd04510f8794776a26c201336b0a5e5d1bd3afb.tar.xz ice-8dd04510f8794776a26c201336b0a5e5d1bd3afb.zip |
Fixed unknown property warnings
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 06094811a70..646d9bf0196 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -818,7 +818,7 @@ IceInternal::ReferenceFactory::checkForUnknownProperties(const string& prefix) if(unknownProps.size()) { Warning out(_instance->initializationData().logger); - out << "Found unknown properties for proxy '" << prefix << "':"; + out << "found unknown properties for proxy '" << prefix << "':"; for(unsigned int i = 0; i < unknownProps.size(); ++i) { out << "\n " << unknownProps[i]; |