From 6d42024c88d207c35718f4f8458e58fc44951830 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 9 Mar 2005 14:57:55 +0000 Subject: * experimental progress callback is back, not too usefull now --- python/progress.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python') diff --git a/python/progress.h b/python/progress.h index d653b42d..5859eea0 100644 --- a/python/progress.h +++ b/python/progress.h @@ -1,6 +1,8 @@ #ifndef PROGRESS_H #define PROGRESS_H +#include + struct PyOpProgressStruct : public OpProgress { @@ -12,7 +14,7 @@ struct PyOpProgressStruct : public OpProgress return; // Build up the argument list... - PyObject *arglist = Py_BuildValue("(fO)", Percent, py_update_callback_args); + PyObject *arglist = Py_BuildValue("fO", Percent,py_update_callback_args); // ...for calling the Python compare function. PyObject *result = PyEval_CallObject(py_update_callback_func,arglist); -- cgit v1.2.3