make a slot lets say slotIntToDouble(int);
Qt Code:
connect(this,SIGNAL(valudeChanged(int)),this,SLOT(slotIntToDouble(int))); void MySlider::slotIntToDouble(int value) { double d=value; emit valueChanged(d); }To copy to clipboard, switch view to plain text mode
Bookmarks