summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebKit/qt/docs/webkitsnippets/qtwebkit_qwebinspector_snippet.cpp
blob: 07f1d452a508da4b658412cb972bb7699232a398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

void wrapInFunction()
{

//! [0]
    // ...
    QWebPage *page = new QWebPage;
    // ...

    QWebInspector *inspector = new QWebInspector;
    inspector->setPage(page);
//! [0]

}