diff options
author | Michi Henning <michi@zeroc.com> | 2008-03-06 16:33:31 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2008-03-06 16:33:31 +1000 |
commit | 2740c38d741b10018c66c97acaf67fa9cd9f0a87 (patch) | |
tree | 784657f6e99168e15b060f40e88c4a54f5c7e9e8 /cpp/demo/Ice/latency/Client.cpp | |
parent | Another fix to bug 2395. gacutil can actually do what we need, it's just that... (diff) | |
parent | Squashed commit of the following: (diff) | |
download | ice-2740c38d741b10018c66c97acaf67fa9cd9f0a87.tar.bz2 ice-2740c38d741b10018c66c97acaf67fa9cd9f0a87.tar.xz ice-2740c38d741b10018c66c97acaf67fa9cd9f0a87.zip |
Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice
Diffstat (limited to 'cpp/demo/Ice/latency/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/latency/Client.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/demo/Ice/latency/Client.cpp b/cpp/demo/Ice/latency/Client.cpp index 1ac3f2ab2c4..8f9d414daa8 100644 --- a/cpp/demo/Ice/latency/Client.cpp +++ b/cpp/demo/Ice/latency/Client.cpp @@ -36,8 +36,7 @@ LatencyClient::run(int argc, char* argv[]) return EXIT_FAILURE; } - Ice::ObjectPrx base = communicator()->propertyToProxy("Latency.Ping"); - PingPrx ping = PingPrx::checkedCast(base); + PingPrx ping = PingPrx::checkedCast(communicator()->propertyToProxy("Ping.Proxy")); if(!ping) { cerr << argv[0] << ": invalid proxy" << endl; |