diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-09-16 12:32:52 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-09-16 12:32:52 +0000 |
commit | adc888d0323bd3078b5f6ef0a226c0a9efdcbea8 (patch) | |
tree | 84fa0986cd69b89867658cf5fbae121826a204ce /cpp/src/Ice/Reference.cpp | |
parent | fix (diff) | |
download | ice-adc888d0323bd3078b5f6ef0a226c0a9efdcbea8.tar.bz2 ice-adc888d0323bd3078b5f6ef0a226c0a9efdcbea8.tar.xz ice-adc888d0323bd3078b5f6ef0a226c0a9efdcbea8.zip |
bug 479 - fixed reference -> fixed proxy
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r-- | cpp/src/Ice/Reference.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp index cf9b7784943..7c58f93e5f9 100644 --- a/cpp/src/Ice/Reference.cpp +++ b/cpp/src/Ice/Reference.cpp @@ -492,13 +492,13 @@ IceInternal::FixedReference::changeEndpoints(const vector<EndpointIPtr>& newEndp void IceInternal::FixedReference::streamWrite(BasicStream* s) const { - throw MarshalException(__FILE__, __LINE__, "Cannot marshal a fixed reference"); + throw MarshalException(__FILE__, __LINE__, "Cannot marshal a fixed proxy"); } string IceInternal::FixedReference::toString() const { - throw MarshalException(__FILE__, __LINE__, "Cannot marshal a fixed reference"); + throw MarshalException(__FILE__, __LINE__, "Cannot marshal a fixed proxy"); } ConnectionIPtr |