We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ccd53 commit fa274d2Copy full SHA for fa274d2
src/PythonQtClassWrapper.h
@@ -63,7 +63,7 @@ struct PythonQtDynamicClassInfo;
63
//! a Python wrapper object for PythonQt wrapped classes
64
//! which inherits from the Python type object to allow
65
//! deriving of wrapped CPP classes from Python.
66
-typedef struct {
+struct PythonQtClassWrapper {
67
PyHeapTypeObject _base;
68
69
//! the additional class information that PythonQt stores for the CPP class
@@ -73,8 +73,7 @@ typedef struct {
73
PythonQtClassInfo* classInfo() { return _classInfo; }
74
75
PythonQtDynamicClassInfo* _dynamicClassInfo;
76
-
77
-} PythonQtClassWrapper;
+};
78
79
//---------------------------------------------------------------
80
0 commit comments