currentRowChanged信号在两个不同的插槽上

时间:2011-10-04 08:47:25

标签: qt qt4 signals-slots

我有以下插槽和信号。

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()));

应用程序在某种程度上按预期工作,但在我尝试编辑表单中的数据时崩溃。

0 个答案:

没有答案