Skip to content

Commit

Permalink
Fix some more possibly crashes with Qt 5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Abs62 committed Mar 22, 2019
1 parent cf2ca57 commit 5fb4ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mainwindow.cc
Expand Up @@ -4252,7 +4252,7 @@ void MainWindow::showDictionaryHeadwords( QWidget * owner, Dictionary::Class * d
connect( headwordsDlg, SIGNAL( headwordSelected( QString, QString ) ),
this, SLOT( headwordReceived( QString, QString ) ) );
connect( headwordsDlg, SIGNAL( closeDialog() ),
this, SLOT( closeHeadwordsDialog() ) );
this, SLOT( closeHeadwordsDialog() ), Qt::QueuedConnection );
}
else
headwordsDlg->setup( dict );
Expand Down

0 comments on commit 5fb4ff1

Please sign in to comment.