antonypro / QGoodWindow

QGoodWindow - border less window for Qt 5 and Qt 6
MIT License
516 stars 92 forks source link

Replace Qt keywords with `Q_*` macros #44

Closed yhgu2000 closed 1 year ago

yhgu2000 commented 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:

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 .

antonypro commented 1 year ago

@yhgu2000: Sorry for the time time to reply!

I'm going to merge your pull request.