diff options
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 af11623f15f..7b4d6efdb62 100644 --- a/py/modules/IcePy/Communicator.cpp +++ b/py/modules/IcePy/Communicator.cpp @@ -19,7 +19,7 @@ #include <Operation.h> #include <Properties.h> #include <Proxy.h> -#include <ThreadNotification.h> +#include <Thread.h> #include <Util.h> #include <Ice/Initialize.h> #include <Ice/CommunicatorAsync.h> @@ -162,7 +162,7 @@ communicatorInit(CommunicatorObject* self, PyObject* args, PyObject* /*kwds*/) if(threadHook.get() && threadHook.get() != Py_None) { - data.threadHook = new ThreadNotificationWrapper(threadHook.get()); + data.threadHook = new ThreadHook(threadHook.get()); } } |