Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Help in error please!
-
Any suggestion?
-
@Luis_Barbosa
I don't see no errors, care to explain what you mean?
-
@Luis_Barbosa
I you mean the unused parameter warnings you see, you can suppress those by adding aQ_UNUSED(variable)
statement into the body of the function, which is what I do if I do not need to use a parameter.
-
@Luis_Barbosa Isn't it apperent? You have unused parameters. This is a warning, not error. To fix it either use the parameter or remove/comment out parameter names...