summaryrefslogtreecommitdiff
path: root/pyuno/source
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/source')
-rw-r--r--pyuno/source/module/pyuno_callable.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyuno/source/module/pyuno_callable.cxx b/pyuno/source/module/pyuno_callable.cxx
index 4269b09b21e3..a58ac8b8e6eb 100644
--- a/pyuno/source/module/pyuno_callable.cxx
+++ b/pyuno/source/module/pyuno_callable.cxx
@@ -30,18 +30,18 @@ using com::sun::star::script::XInvocation2;
namespace pyuno
{
-typedef struct
+struct PyUNO_callable_Internals
{
Reference<XInvocation2> xInvocation;
OUString methodName;
ConversionMode mode;
-} PyUNO_callable_Internals;
+};
-typedef struct
+struct PyUNO_callable
{
PyObject_HEAD
PyUNO_callable_Internals* members;
-} PyUNO_callable;
+};
static void PyUNO_callable_del (PyObject* self)
{