我有以下插槽和信号。
connect(ui.tableView->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)),
mapper, SLOT(setCurrentModelIndex(QModelIndex)));
connect(ui.tableView->selectionModel(),
SIGNAL(currentRowChanged(const QModelIndex&,
const QModelIndex&)),
this, SLOT(getImage()));
应用程序在某种程度上按预期工作,但在我尝试编辑表单中的数据时崩溃。