diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-06-03 14:51:38 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-06-03 14:51:38 +0000 |
commit | b817036fd9ae43ac844c2ef9d03ecb9adc28dfaf (patch) | |
tree | 169d7ff182f7d7f34cca943c9c6fce9583def585 /cpp/src | |
parent | Cosmetic fixes. (diff) | |
download | ice-b817036fd9ae43ac844c2ef9d03ecb9adc28dfaf.tar.bz2 ice-b817036fd9ae43ac844c2ef9d03ecb9adc28dfaf.tar.xz ice-b817036fd9ae43ac844c2ef9d03ecb9adc28dfaf.zip |
Variables defined in <include> element are now correctly substituted
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IcePack/DescriptorParser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/IcePack/DescriptorParser.cpp b/cpp/src/IcePack/DescriptorParser.cpp index 505ffccf4f4..feb6a7791ef 100644 --- a/cpp/src/IcePack/DescriptorParser.cpp +++ b/cpp/src/IcePack/DescriptorParser.cpp @@ -1,4 +1,3 @@ - // ********************************************************************** // // Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. @@ -183,7 +182,7 @@ DescriptorHandler::startElement(const string& name, const IceXML::Attributes& at } else { - _variables.back()[p->first] = p->second; + _variables.back()[p->first] = substitute(p->second); } } |