Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/PythonQt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1560,6 +1560,10 @@ PythonQtClassInfo* PythonQtPrivate::currentClassInfoForClassWrapperCreation()

void PythonQtPrivate::addDecorators(QObject* o, int decoTypes)
{
if (o == nullptr)
{
return;
}
Comment on lines +1563 to +1566
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The formatting does not match the rest of the code. I will merge as is to avoid further merge problems - at some point, when the merges are done, #265 will be merged in some form, would be good to synchronize this with the commontk version then.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for pointing this out. And very soon, the commontk fork will be aligned with upstream 🤞

o->setParent(this);
int numMethods = o->metaObject()->methodCount();
for (int i = 0; i < numMethods; i++) {
Expand Down
Loading