summaryrefslogtreecommitdiffstats
path: root/src/core/doc/snippets/qtwebengine_qwebenginepage_snippet.cpp
blob: 309ad8233a8beb2b366724655951274dbb22e9e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

void wrapInFunction()
{

//! [0]
    m_view->page()->findText(QStringLiteral("Qt"), QWebEnginePage::FindFlags(), [this](bool found) {
        if (!found) QMessageBox::information(m_view, QString(), QStringLiteral("No occurrences found"));
    });
//! [0]

}