SIGNAL and SLOT....
-
i get this error on Signal and SLOT. i can Build my programm, but i always have this error and when, the Connect() do not do what => so signal send to the slot
-
i have found an error in the header "qojectdefs.h" on row = 217...
the line have to be change with this one:
# define QLOCATION "\0" __FILE__ ":" QTOSTRING(__LINE__)
otherwise, the Preprocessor
__FILE__
can't be recognized.... -
Your slot definition is wrong:
- the class must not be there
- you can't inject parameters the way you do it - you can only pass the parameters coming from the signal
-
i have rewrite it correct.... i have already read this tutorial.
My Problem is that, the SIGNAL and SLOT macro are not recognized.
-
@bricedorsey said in SIGNAL and SLOT....:
i havewrite it correct..
Your connect statement is wrong - I already told you why.
-
i have found an error in the header "qojectdefs.h" on row = 217...
the line have to be change with this one:
# define QLOCATION "\0" __FILE__ ":" QTOSTRING(__LINE__)
otherwise, the Preprocessor
__FILE__
can't be recognized....