diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-07-28 20:35:26 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-07-28 20:35:26 +0000 |
commit | a7270eb607bf5602b6f10dbd2e78da18e4f3d6fb (patch) | |
tree | ef3ca6c6da06abf84b16fcb3eff00f36ab5d65d3 /cppe/src/IceE/Proxy.cpp | |
parent | cleaning up the Ruby settings (diff) | |
download | ice-a7270eb607bf5602b6f10dbd2e78da18e4f3d6fb.tar.bz2 ice-a7270eb607bf5602b6f10dbd2e78da18e4f3d6fb.tar.xz ice-a7270eb607bf5602b6f10dbd2e78da18e4f3d6fb.zip |
restored setDefaultContext
Diffstat (limited to 'cppe/src/IceE/Proxy.cpp')
-rw-r--r-- | cppe/src/IceE/Proxy.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/src/IceE/Proxy.cpp b/cppe/src/IceE/Proxy.cpp index 31ced0d3e44..da3f5a36812 100644 --- a/cppe/src/IceE/Proxy.cpp +++ b/cppe/src/IceE/Proxy.cpp @@ -177,7 +177,7 @@ IceProxy::Ice::Object::ice_toString() const bool IceProxy::Ice::Object::ice_isA(const string& __id) { - return ice_isA(__id, _reference->getContext()); + return ice_isA(__id, _reference->getContext()->getValue()); } bool @@ -250,7 +250,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context& __context) void IceProxy::Ice::Object::ice_ping() { - ice_ping(_reference->getContext()); + ice_ping(_reference->getContext()->getValue()); } void @@ -312,7 +312,7 @@ IceProxy::Ice::Object::ice_ping(const Context& __context) vector<string> IceProxy::Ice::Object::ice_ids() { - return ice_ids(_reference->getContext()); + return ice_ids(_reference->getContext()->getValue()); } vector<string> @@ -377,7 +377,7 @@ IceProxy::Ice::Object::ice_ids(const Context& __context) string IceProxy::Ice::Object::ice_id() { - return ice_id(_reference->getContext()); + return ice_id(_reference->getContext()->getValue()); } string @@ -442,7 +442,7 @@ IceProxy::Ice::Object::ice_id(const Context& __context) Context IceProxy::Ice::Object::ice_getContext() const { - return _reference->getContext(); + return _reference->getContext()->getValue(); } ObjectPrx @@ -794,7 +794,7 @@ IceProxy::Ice::Object::__checkTwowayOnly(const char* name) const const Context& IceProxy::Ice::Object::__defaultContext() const { - return _reference->getContext(); + return _reference->getContext()->getValue(); } void |