diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-04-09 17:08:17 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-04-09 17:08:17 +0200 |
commit | abefabeae65261c96f34877ff286b406bfb09d73 (patch) | |
tree | 83df2a93bd544e0a9ec2d935654177736c6f1e2e /cpp/src/Ice/OutgoingAsync.cpp | |
parent | amended README.txt to mention object by value (diff) | |
download | ice-abefabeae65261c96f34877ff286b406bfb09d73.tar.bz2 ice-abefabeae65261c96f34877ff286b406bfb09d73.tar.xz ice-abefabeae65261c96f34877ff286b406bfb09d73.zip |
Removed IceGrid AdminCallbackRouter object adapter (bug 2998)
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index c2ffd7cbd82..14da19924e7 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -184,7 +184,7 @@ IceInternal::OutgoingAsyncMessageCallback::__warning(const InstancePtr& instance if(instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.AMICallback", 1) > 0) { Warning out(instance->initializationData().logger); - const Exception* ex = dynamic_cast<const ObjectNotExistException*>(&exc); + const Exception* ex = dynamic_cast<const Exception*>(&exc); if(ex) { out << "Ice::Exception raised by AMI callback:\n" << ex; |