I meant something like this:
Qt Code:
connect(d, SIGNAL(valueThreeIntegersChanged(int,int,int)), this, SLOT(intermediateSlot(int,int,int))); void Foo::intermediateSlot(int a, int b, int c) { Q_UNUSED(a); Q_UNUSED(c); UpdateSecondInteger(b); }To copy to clipboard, switch view to plain text mode
J-P Nurmi
ricardo (5th May 2009)
Bookmarks