{
masterIAL = new IAL;
myIAL[5] = new IAL;
connect(masterIAL,
SIGNAL(mySignalOne
(QString,
int)),myMM,
SLOT(handleSignal
(QString,
int)));
// this is where I'm having problems
connect(myIAL, SIGNAL(value(int, int, ushort)), this, SIGNAL(sendValue(int, int, ushort)));
}
{
MyClass::MyClass(QWidget *parent)
: QWidget(parent)
{
masterIAL = new IAL;
myIAL[5] = new IAL;
connect(masterIAL, SIGNAL(mySignalOne(QString, int)),myMM, SLOT(handleSignal(QString, int)));
// this is where I'm having problems
connect(myIAL, SIGNAL(value(int, int, ushort)), this, SIGNAL(sendValue(int, int, ushort)));
}
{
To copy to clipboard, switch view to plain text mode
Bookmarks