Re: changing data type parameter in qt signals
If you mean you are not allowed to use 'int' ANYWHERE and you want to use Qt, then you will not have an easy life. You will need to modify all Qt source code and rebuild (or insert a typedef everywhere and rebuild...).
Added after 11 minutes:
your code:
connect(ui->combobox,SIGNAL(valueChanged(int)),this, SLOT(mySLOT(unsigned long)));???
You still used int there! So now you are asking for something different than in your first post!
Last edited by amleto; 20th November 2012 at 11:55.
If you have a problem, CUT and PASTE your code. Do not retype or simplify it. Give a COMPLETE and COMPILABLE example of your problem. Otherwise we are all guessing the problem from a fabrication where relevant details are often missing.
Bookmarks