Problems hiding scrollbars in QWebView
-
I am trying to hide the scrollbars on a QWebView have tried this:
webView.page()->mainFrame()->setScrollBarPolicy( Qt::Vertical, Qt::ScrollBarAlwaysOff );
webView.page()->mainFrame()->setScrollBarPolicy( Qt::Horizontal, Qt::ScrollBarAlwaysOff );but Qt is giving me this error:
"invalid use of incomplete type 'struct QWebFrame' forward declaration of 'struct QWebFrame'
-
That worked exactly. Thank you!