QWebEngineView crashes on load() or page() method
问题 I'm working on porting a Qt 5.5, QWebView project to Qt 5.6 (beta), QWebEngine. I've gone through the porting guide here. My code looks like this: .h file defines _view like so: QWebEngineView* _view; and the .cpp constructor (class inherits from QWidget) has: QVBoxLayout* vbox = new QVBoxLayout(this); _view = new QWebEngineView(this); connect(_view, SIGNAL(loadFinished(bool)), this, SLOT(loadPageFinished(bool))); QString webDir = getReportBasePath() + no_tr("/index.html#") + startingPage; //