当我实例化一个QWebPage对象时,我有一个分段错误,我不明白为什么!
我在main.cpp中调用我的对象
webview *nav = new webview();
我的webview.h:
#ifndef WEBVIEW_H
#define WEBVIEW_H
#include <QRegularExpression>
#include <QWebPage>
#include <QWebFrame>
#include <QPrinter>
#include <QDebug>
#include "arguments.h"
class webview
{
public:
webview();
~webview();
bool load(Arguments *args);
QWebFrame* getFrame() { return frame;}
private:
QWebPage *page;
QWebFrame *frame;
};
和我的webview.cpp
#include "webview.h"
webview::webview()
{
page = new QWebPage();
}
[...]
webview::~webview()
{
delete page;
}
webview构造函数中出现分段错误错误:
page = new QWebPage();
我真的不明白为什么
您可以在此处下载项目:http://www.partage-facile.com/Y8NROQ09HG/htmltopdf.tar.gz.html
答案 0 :(得分:3)
您不能将QtWebKit与QCoreApplication一起使用,将所有QCoreApplication更改为QApplication。
答案 1 :(得分:0)
如果你真的不需要将你的页面嵌入到Widget中(你不设置它的父),你可以在堆栈上创建QWebPage。