Skip to content

Commit

Permalink
Loop did never finish if the first entry didn't match, fixes support …
Browse files Browse the repository at this point in the history
…for kwargs in slots.
  • Loading branch information
usiems committed Feb 13, 2020
1 parent 963b667 commit b6bc063
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/PythonQtSlot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ PyObject *PythonQtSlotFunction_CallImpl(PythonQtClassInfo* classInfo, QObject* o
kwSlotFound = true;
break;
}
slotInfo = slotInfo->nextInfo();
}
if (kwSlotFound) {
#ifdef PYTHONQT_DEBUG
Expand Down

0 comments on commit b6bc063

Please sign in to comment.