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

Qt Code:
  1. QWebPage *page = new QWebPage(this);
  2. QWebPage copiedPage;
  3. copiedPage = *page
To copy to clipboard, switch view to plain text mode 

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

THanks.