From 83db9afa20b8cf54b522ca9c3f04e7e267684c59 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 5 Mar 2019 16:11:51 +0200 Subject: remove some unnecessary typedef struct... sugar Change-Id: I1576282b0a0a3af8ae14c04725d9c4900073f2c4 Reviewed-on: https://gerrit.libreoffice.org/68758 Tested-by: Jenkins Reviewed-by: Noel Grandin --- pyuno/source/module/pyuno_callable.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyuno/source') 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 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) { -- cgit