diff options
author | Michi Henning <michi@zeroc.com> | 2003-06-17 06:07:11 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-06-17 06:07:11 +0000 |
commit | ea7d244c8a82d61d371493d3ee7c05eafa4f07b2 (patch) | |
tree | 192cd2b6b2808d7faf8db06b700af786a568e9a1 /cpp/test/Ice/exceptions/AllTests.cpp | |
parent | added comment about changes to TestUtil.py (diff) | |
download | ice-ea7d244c8a82d61d371493d3ee7c05eafa4f07b2.tar.bz2 ice-ea7d244c8a82d61d371493d3ee7c05eafa4f07b2.tar.xz ice-ea7d244c8a82d61d371493d3ee7c05eafa4f07b2.zip |
Changed Ice::ServantLocator::deactivate() such that the category is passed
to deactivate().
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index a4ecc85d05f..ba11bd18de5 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -28,7 +28,7 @@ public: virtual Ice::ObjectPtr locate(const Ice::Current&, Ice::LocalObjectPtr&) { return 0; } virtual void finished(const Ice::Current&, const Ice::ObjectPtr&, const Ice::LocalObjectPtr&) {} - virtual void deactivate() {} + virtual void deactivate(const string&) {} }; class ObjectFactoryI : virtual public Ice::ObjectFactory |