diff options
Diffstat (limited to 'cpp/src/IcePack/DescriptorParser.cpp')
-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); } } |