·H
public slots:
void actCopy();
void recordlocation(int,int);
_moc.cc
case 6: _t->actCopy();break;
case 7: _t->recordlocation((*reinterpret_cast< int(*)>(_a[1])),(*reinterpret_cast< int(*)>(_a[2]))); break;
default: ;
}
.CC
connect(ui->actionCopy1,SIGNAL(clicked()), this, SLOT(actCopy()));
connect(ui->previewTable,SIGNAL(cellClicked(int, int)), this, SLOT(recordlocation(int, int)));
void
TimeSchedulerWindow::actCopy()
{
copy_cell(loc.row,loc.column);
}
void
TimeSchedulerWindow::recordlocation(int row, int column)
{
loc.row=row;
loc.column=column;
copy_cell(loc.row,loc.column);
}
我程序中的其他插槽就是工作....
只有这两个插槽不起作用。
我喜欢叫slot()
不要调用函数
有人可以帮忙吗?