diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 16:14:34 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-29 16:14:34 +0000 |
commit | 61bd0677a5696512209a662930dd233eca31d29e (patch) | |
tree | 69acd8bc13389a6397e5b9f321dd8d5126faf9fc /cpp/src/IceGrid/Util.cpp | |
parent | Fixes (diff) | |
download | ice-61bd0677a5696512209a662930dd233eca31d29e.tar.bz2 ice-61bd0677a5696512209a662930dd233eca31d29e.tar.xz ice-61bd0677a5696512209a662930dd233eca31d29e.zip |
The default value for the adaper endpoints in the XML descriptors in now
"default"
Diffstat (limited to 'cpp/src/IceGrid/Util.cpp')
-rw-r--r-- | cpp/src/IceGrid/Util.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/Util.cpp b/cpp/src/IceGrid/Util.cpp index 00d04bd3bf7..cedc6ca1b95 100644 --- a/cpp/src/IceGrid/Util.cpp +++ b/cpp/src/IceGrid/Util.cpp @@ -61,10 +61,9 @@ IceGrid::toString(const Ice::Exception& exception) } string -IceGrid::getProperty(const PropertySetDescriptor& propertySet, const string& name, const string& def) +IceGrid::getProperty(const PropertyDescriptorSeq& properties, const string& name, const string& def) { - for(PropertyDescriptorSeq::const_iterator q = propertySet.properties.begin(); - q != propertySet.properties.end(); ++q) + for(PropertyDescriptorSeq::const_iterator q = properties.begin(); q != properties.end(); ++q) { if(q->name == name) { |