Folks, i'm proud to publically anounce that all this topic was nothingness 
Just the solution if any Photoshop developpers decide to use QT in a plugin:
- Go to your Photoshop SDK source tree,
- Open the file PITerminology.h, and go to line #1009 which says:
#define eventFilter 'Fltr'
#define eventFilter 'Fltr'
To copy to clipboard, switch view to plain text mode
This line defines a macro called "eventFilter", which obviously is misunderstood at compile time if you're using QT...
There is an easy workaround if you dont use event filters in your code YET, just rename the macro like this:
#define photoshopEventFilter 'Fltr'
#define photoshopEventFilter 'Fltr'
To copy to clipboard, switch view to plain text mode
Then in your code (Related to Photoshop eventFilters), dont use "eventFilter" but "photoshopEventFilter" as previously defined.
Since we're very lucky, this macro isn't actually used in any other Photoshop's SDK file.
It will solve the very anoying errors
In fact i had corrected this error a long time ago, but since i reinstalled my PC (and Photoshop SDK), it was here again... and i didnt remember.
After i find this kind of conflict errors, am i supposed to do some feedback to TrollTech or something?
Thanks all for your help!
Pierre.
[EDIT:] You can get another similar error, if you get any error which points to QTabletEvent definition in QEvent.h, you have to use the same workaround for the keyState name in PITerminology.h, or just change the "keyState" variable name in the QEvent.h.
Bookmarks