PDA

View Full Version : recompile the program in a 64bit machine



saman_artorious
12th February 2014, 14:46
I developed my program in a 32bit machine. Now, I transfered it to a 64bit machine and recompiled it with qt 64bit.
The program only runs for a few second and then terminates! Besides, I get the below warning when I start the program. In the 32bit machine I tested the program successfully and had no problems with it.



QMetaObject::connectSlotsByName: No matching signal for on_poweroff_clicked()
QMetaObject::connectSlotsByName: No matching signal for on_stby_clicked()
QMetaObject::connectSlotsByName: No matching signal for on_inc_range_clicked()
QMetaObject::connectSlotsByName: No matching signal for on_dec_range_clicked()


in the 32bit machine,i did no receive these warnings, besides, the signals are connected when I test the program. but strangely I receive the above warnings.

anda_skoa
12th February 2014, 15:23
Use real, explicit connects instead of relying on the autoconnect feature. That is not recommended anyway.

Btw, does that mean you have sovled http://www.qtcentre.org/threads/58041-qInitResources_rsrc() ? How about indicating that there?

Cheers,
_