diff options
-rw-r--r-- | cpp/slice/Ice/Communicator.ice | 4 | ||||
-rw-r--r-- | py/modules/IcePy/Communicator.cpp | 4 | ||||
-rw-r--r-- | rb/src/IceRuby/Communicator.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/cpp/slice/Ice/Communicator.ice b/cpp/slice/Ice/Communicator.ice index afd2d04c4f2..be22673d04b 100644 --- a/cpp/slice/Ice/Communicator.ice +++ b/cpp/slice/Ice/Communicator.ice @@ -316,7 +316,7 @@ local interface Communicator * * @see setDefaultContext **/ - ["cpp:const", "deprecate:getDefaultContext has been deprecated, use per-proxy contexts or implicit contexts (if applicable) instead"] + ["cpp:const", "deprecate:getDefaultContext is deprecated, use per-proxy contexts or implicit contexts (if applicable) instead"] Context getDefaultContext(); /** @@ -333,7 +333,7 @@ local interface Communicator * @param ctx The default context to be set. * @see getDefaultContext **/ - ["deprecate:setDefaultContext has been deprecated, use per-proxy contexts or implicit contexts (if applicable) instead"] + ["deprecate:setDefaultContext is deprecated, use per-proxy contexts or implicit contexts (if applicable) instead"] void setDefaultContext(Context ctx); /** 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 diff --git a/rb/src/IceRuby/Communicator.cpp b/rb/src/IceRuby/Communicator.cpp index dd4ffc65ac1..8932525fe6b 100644 --- a/rb/src/IceRuby/Communicator.cpp +++ b/rb/src/IceRuby/Communicator.cpp @@ -373,7 +373,7 @@ extern "C" VALUE IceRuby_Communicator_getDefaultContext(VALUE self) { - rb_warning("getDefaultContext has been deprecated; use per-proxy contexts or implicit contexts (if applicable) instead."); + rb_warning("getDefaultContext is deprecated; use per-proxy contexts or implicit contexts (if applicable) instead."); ICE_RUBY_TRY { @@ -389,7 +389,7 @@ extern "C" VALUE IceRuby_Communicator_setDefaultContext(VALUE self, VALUE context) { - rb_warning("setDefaultContext has been deprecated; use per-proxy contexts or implicit contexts (if applicable) instead."); + rb_warning("setDefaultContext is deprecated; use per-proxy contexts or implicit contexts (if applicable) instead."); ICE_RUBY_TRY { |