Closed yhgu2000 closed 1 year ago
Since the words signals, slots and emit are some common names. They have potential name collisions when mix Qt code with other libraries. This problem has been reported many times:
signals
slots
emit
As to myself, I encountered this problem when using OpenCV, a well-known computer vision library before.
So it is recommended to disable them in new projects: https://doc.qt.io/qt-5/signalsandslots.html#using-qt-with-3rd-party-signals-and-slots .
@yhgu2000: Sorry for the time time to reply!
I'm going to merge your pull request.
Since the words
signals
,slots
andemit
are some common names. They have potential name collisions when mix Qt code with other libraries. This problem has been reported many times:As to myself, I encountered this problem when using OpenCV, a well-known computer vision library before.
So it is recommended to disable them in new projects: https://doc.qt.io/qt-5/signalsandslots.html#using-qt-with-3rd-party-signals-and-slots .