diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-09-19 17:06:45 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-09-19 17:06:45 +0000 |
commit | f03fbc1d047e79e6b5dbf2b28e737b5db90c3da0 (patch) | |
tree | eab0577aaa113265d1309d55c5812a650eb77f62 /cpp/src/slice2vb/Gen.cpp | |
parent | fix typo in makedist script (diff) | |
download | ice-f03fbc1d047e79e6b5dbf2b28e737b5db90c3da0.tar.bz2 ice-f03fbc1d047e79e6b5dbf2b28e737b5db90c3da0.tar.xz ice-f03fbc1d047e79e6b5dbf2b28e737b5db90c3da0.zip |
Back out change
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2vb/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2vb/Gen.cpp b/cpp/src/slice2vb/Gen.cpp index 7e59807ec95..7bd01a9bede 100755 --- a/cpp/src/slice2vb/Gen.cpp +++ b/cpp/src/slice2vb/Gen.cpp @@ -4838,7 +4838,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) _out.dec(); _out << nl << "End Sub"; - _out << sp << nl << "Protected Overrides Function __response(__ok As Boolean) As Boolean"; + _out << sp << nl << "Protected Overrides Sub __response(__ok As Boolean) As Boolean"; _out.inc(); for(q = outParams.begin(); q != outParams.end(); ++q) { @@ -4936,7 +4936,7 @@ Slice::Gen::AsyncVisitor::visitOperation(const OperationPtr& p) _out << nl << "ice_response" << spar << args << epar; _out << nl << "Return False"; _out.dec(); - _out << nl << "End Function"; + _out << nl << "End Sub"; _out.dec(); _out << nl << "End Class"; } |