summaryrefslogtreecommitdiff
path: root/cpp/src/slice2vb/Gen.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-09-19 14:26:59 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-09-19 14:26:59 +0000
commit12bf9580ba0789d9e7e7c4a1a9ac3ab13994e566 (patch)
tree20847a89ad7b40caa2e872eab6163a4f739c1e62 /cpp/src/slice2vb/Gen.cpp
parentfix install rule bug (diff)
downloadice-12bf9580ba0789d9e7e7c4a1a9ac3ab13994e566.tar.bz2
ice-12bf9580ba0789d9e7e7c4a1a9ac3ab13994e566.tar.xz
ice-12bf9580ba0789d9e7e7c4a1a9ac3ab13994e566.zip
Changed __response to be Function
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-xcpp/src/slice2vb/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2vb/Gen.cpp b/cpp/src/slice2vb/Gen.cpp
index 7bd01a9bede..7e59807ec95 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 Sub __response(__ok As Boolean) As Boolean";
+ _out << sp << nl << "Protected Overrides Function __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 Sub";
+ _out << nl << "End Function";
_out.dec();
_out << nl << "End Class";
}