I've problem: this connect get me a console error like as cannot connect check box to null::set(bool); but the SLOT starts; it works!Why?
Code:
FancyPopup::FancyPopup(myMainForm* parent, const char* name ): connect (checkBox, SIGNAL(toggled(bool)), _myw, SLOT(set(bool)));
and why this connect get me a run time error:
but this works:Code:
connect (dial, SIGNAL(valueChanged(int)), _myw, SLOT(setValue(int)));
Code:
connect (dial, SIGNAL(dialMoved(int)), _myw, SLOT(setValue(int)));
