summaryrefslogtreecommitdiff
path: root/cpp/src/slice2vb/Gen.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-05-03 00:30:45 +0000
committerMichi Henning <michi@zeroc.com>2005-05-03 00:30:45 +0000
commit177a5118c7ab9940680ec72a8f4fd39e876e9540 (patch)
treef2c8733d9029617ee00b955583bafaa53aae4645 /cpp/src/slice2vb/Gen.cpp
parentFix to check for .NET instead of Windows. (diff)
downloadice-177a5118c7ab9940680ec72a8f4fd39e876e9540.tar.bz2
ice-177a5118c7ab9940680ec72a8f4fd39e876e9540.tar.xz
ice-177a5118c7ab9940680ec72a8f4fd39e876e9540.zip
Changed upper-case of some params to lower-case because mbas doesn't
correctly deal with identifiers that differ only in case.
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 3317e0db3b4..f16553b4d55 100755
--- a/cpp/src/slice2vb/Gen.cpp
+++ b/cpp/src/slice2vb/Gen.cpp
@@ -3591,7 +3591,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p)
_out << nl << "End Function";
- _out << sp << nl << "Public Shared Function checkedCast(ByVal B As Ice.ObjectPrx, ByVal f As String) As "
+ _out << sp << nl << "Public Shared Function checkedCast(ByVal b As Ice.ObjectPrx, ByVal f As String) As "
<< name << "Prx";
_out.inc();
_out << nl << "If b Is Nothing Then";
@@ -3616,7 +3616,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p)
_out.dec();
_out << nl << "End Function";
- _out << sp << nl << "Public Shared Function checkedCast(ByVal B As Ice.ObjectPrx, ByVal f As String, "
+ _out << sp << nl << "Public Shared Function checkedCast(ByVal b As Ice.ObjectPrx, ByVal f As String, "
<< "ByVal ctx As Ice.Context) As " << name << "Prx";
_out.inc();
_out << nl << "If b Is Nothing Then";