PDA

View Full Version : copy (snapshotting) QWebPage object



dotjan
26th October 2012, 14:43
Hi, in my app I would need to copy a QWebPage object in order to always use the copied one and maintain unchanged the original one, a kind of snapshot of it. The following does not work due to Q_DISABLE_COPY macro


QWebPage *page = new QWebPage(this);
QWebPage copiedPage;
copiedPage = *page

I so wonder what else I could use, or is that simply not possible?

THanks.