QTableWidget插槽不调用函数(argent)

时间:2015-04-22 02:30:36

标签: c++ qt qt5

·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()不要调用函数
有人可以帮忙吗?

0 个答案:

没有答案