diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-01-12 12:30:46 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-01-12 12:30:46 +0000 |
commit | 950b7f833b83c3cbc91a74638bae1737ac1e552e (patch) | |
tree | e9f3c35d63029a5916b79c629e5c0fe778a51c58 /py/modules/IcePy/Communicator.cpp | |
parent | provide relative path to slice2html (diff) | |
download | ice-950b7f833b83c3cbc91a74638bae1737ac1e552e.tar.bz2 ice-950b7f833b83c3cbc91a74638bae1737ac1e552e.tar.xz ice-950b7f833b83c3cbc91a74638bae1737ac1e552e.zip |
Changed message
Diffstat (limited to 'py/modules/IcePy/Communicator.cpp')
-rw-r--r-- | py/modules/IcePy/Communicator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modules/IcePy/Communicator.cpp b/py/modules/IcePy/Communicator.cpp index 47d048891c8..28e020669c9 100644 --- a/py/modules/IcePy/Communicator.cpp +++ b/py/modules/IcePy/Communicator.cpp @@ -714,7 +714,7 @@ extern "C" static PyObject* communicatorSetDefaultContext(CommunicatorObject* self, PyObject* args) { - PyErr_Warn(PyExc_DeprecationWarning, STRCAST("setDefaultContext has been deprecated, use per-proxy contexts or implicit contexts (if applicable) instead.")); + PyErr_Warn(PyExc_DeprecationWarning, STRCAST("setDefaultContext is deprecated, use per-proxy contexts or implicit contexts (if applicable) instead.")); PyObject* dict; if(!PyArg_ParseTuple(args, STRCAST("O!"), &PyDict_Type, &dict)) @@ -749,7 +749,7 @@ extern "C" static PyObject* communicatorGetDefaultContext(CommunicatorObject* self) { - PyErr_Warn(PyExc_DeprecationWarning, STRCAST("getDefaultContext has been deprecated, use per-proxy contexts or implicit contexts (if applicable) instead.")); + PyErr_Warn(PyExc_DeprecationWarning, STRCAST("getDefaultContext is deprecated, use per-proxy contexts or implicit contexts (if applicable) instead.")); Ice::Context ctx; try |