QApplication::sendEvent() を介して QListView にイベントを送信すると、アプリがクラッシュします。
void MyQWidget::keyPressEvent(QKeyEvent * event)
{
if (event->key() == Qt::Key_Up || event->key() == Qt::Key_Down) {
QApplication::sendEvent(this->view,event); // this.view being the QListView
}
QWidget::keyPressEvent(event);
}
原因知ってる人いますか?