Qt Creator 3.5.0 periodically crashes
-
here is dump:
http://pastebin.com/TUBLjPwe
periodically = every few hours. Other programs work well. -
Hi and welcome to devnet,
Are you doing anything special ? Letting the computer sleep ? Having it particularly loaded ? Other software running when this crash happen ?
-
All questions - the answer is "no".
I think it happens when the cursor hover over the word and hint should appear. I disabled hints, but nothing has changed.
Qt creator is on an external usb HDD, I will try to move it to the internal SSD ...
Sorry for my English. -
Nothing wrong with your english :)
Do you have a stack trace of the crash ?
-
stack trace - in my first message:
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libTextEditor.dylib 0x0000000109771644 TextEditor::FunctionHintProposalWidget::eventFilter(QObject*, QEvent*) + 340
1 org.qt-project.QtCore 0x0000000103e083dc QCoreApplicationPrivate::sendThroughApplicationEventFilters(QObject*, QEvent*) + 220
2 org.qt-project.QtWidgets 0x000000010308761c QApplicationPrivate::notify_helper(QObject*, QEvent*) + 28
3 org.qt-project.QtWidgets 0x000000010308af2d QApplication::notify(QObject*, QEvent*) + 9421
… and so oni found this point TextEditor::FunctionHintProposalWidget::eventFilter(QObject*, QEvent*) + 340 in libTextEditor.dylib, and i found similar code in https://github.com/qtproject/qt-creator/blob/master/src/plugins/texteditor/codeassist/functionhintproposalwidget.cpp
it is:
void FunctionHintProposalWidget::abort()
{
if (d->m_popupFrame->isVisible())
d->m_popupFrame->close();
qApp->removeEventFilter(this);
deleteLater();
}
crash was in "d->m_popupFrame"
But i see "functionhintproposalwidget.cpp" has been edit 7 days ago. Probably it is already fixed.
http://s27.postimg.org/wjcp10ojn/Untitled.png -
You can double check that with the Qt Creator mailing list or IRC channel