summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-04-23 14:35:23 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-04-23 14:35:23 +0000
commitdb51a4ed54b62d54c08ad1931b3b6757ee9bd76d (patch)
tree7ab599ec14e3f683264acb42bbea7a17838d178b /cpp/src
parentfix (diff)
downloadice-db51a4ed54b62d54c08ad1931b3b6757ee9bd76d.tar.bz2
ice-db51a4ed54b62d54c08ad1931b3b6757ee9bd76d.tar.xz
ice-db51a4ed54b62d54c08ad1931b3b6757ee9bd76d.zip
Fix bug with generation of Disp classes.
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/slice2java/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp
index d6fbb51ed9a..e62e5e67e76 100644
--- a/cpp/src/slice2java/Gen.cpp
+++ b/cpp/src/slice2java/Gen.cpp
@@ -343,7 +343,7 @@ Slice::JavaVisitor::writeDispatch(Output& out, const ClassDefPtr& p)
//
// Dispatch operations
//
- OperationList ops = p->operations();
+ OperationList ops = p->allOperations();
OperationList::const_iterator r;
for (r = ops.begin(); r != ops.end(); ++r)
{