I've had a similar issue. Does it work if you add
Qt Code:
qRegisterMetaType<Enums::DayOfWeek >("Enums::DayOfWeek")To copy to clipboard, switch view to plain text mode
and change the call to:
?Qt Code:
myObject.outputDay(Enums.MONDAY)To copy to clipboard, switch view to plain text mode
The one thing that is not so nice about this is that the parameter in the call doesn't refer to DayOfWeek anymore.
Regards
Bookmarks