diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-11-19 17:47:06 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-11-19 17:47:06 +0000 |
commit | e6141ff530d1a6ee9be385ebb176b5915bd086c0 (patch) | |
tree | 1ca7c775342cf5ac3b507add55bec3e709b7bb96 /cpp/src | |
parent | minor fix (diff) | |
download | ice-e6141ff530d1a6ee9be385ebb176b5915bd086c0.tar.bz2 ice-e6141ff530d1a6ee9be385ebb176b5915bd086c0.tar.xz ice-e6141ff530d1a6ee9be385ebb176b5915bd086c0.zip |
mistakenly emitted <transform> instead of <init> for new sequence types
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Transform/Analyzer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Transform/Analyzer.cpp b/cpp/src/Transform/Analyzer.cpp index 9b9d3349d12..35f0b661580 100644 --- a/cpp/src/Transform/Analyzer.cpp +++ b/cpp/src/Transform/Analyzer.cpp @@ -1066,7 +1066,7 @@ Transform::InitVisitor::visitSequence(const SequencePtr& v) _out.nl(); _out.nl(); _out << "<!-- sequence " << scoped << " -->"; - _out << se("transform") << attr("type", scoped); + _out << se("init") << attr("type", scoped); _out << ee; } |