summaryrefslogtreecommitdiff
path: root/python/modules/IcePy/Util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'python/modules/IcePy/Util.cpp')
-rw-r--r--python/modules/IcePy/Util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/modules/IcePy/Util.cpp b/python/modules/IcePy/Util.cpp
index 9044df85b04..b40d9f3dcfb 100644
--- a/python/modules/IcePy/Util.cpp
+++ b/python/modules/IcePy/Util.cpp
@@ -14,7 +14,7 @@
#include <IceUtil/DisableWarnings.h>
#include <Ice/LocalException.h>
#include <Ice/Protocol.h>
-#include <IceUtil/UUID.h>
+#include <Ice/UUID.h>
#include <Slice/PythonUtil.h>
#include <compile.h>
#include <frameobject.h>
@@ -1158,6 +1158,6 @@ extern "C"
PyObject*
IcePy_generateUUID(PyObject* /*self*/)
{
- string uuid = IceUtil::generateUUID();
+ string uuid = Ice::generateUUID();
return IcePy::createString(uuid);
}