From 69f7b31d67fdd1dc9c48a9a514e5ae92039cbf15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= Date: Tue, 22 Aug 2023 23:19:55 +0200 Subject: [PATCH] Fix deprecated declaration. [GB.QT4.WEBKIT] * BUG: Fix deprecated declaration. [GB.QT5.WEBKIT] * BUG: Fix deprecated declaration. --- gb.qt4/src/webkit/cwebview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gb.qt4/src/webkit/cwebview.cpp b/gb.qt4/src/webkit/cwebview.cpp index b4db0ac57..8049a9d60 100644 --- a/gb.qt4/src/webkit/cwebview.cpp +++ b/gb.qt4/src/webkit/cwebview.cpp @@ -527,7 +527,7 @@ END_METHOD BEGIN_METHOD(WebView_FindText, GB_STRING text; GB_BOOLEAN backward; GB_BOOLEAN case_sensitive; GB_BOOLEAN wrap) QString text; - QWebPage::FindFlags flags = 0; + QWebPage::FindFlags flags; if (!MISSING(text)) text = QSTRING_ARG(text);