Skip to content

Commit

Permalink
Fix compilation when QtWebKit is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
YoannQDQ committed Oct 6, 2024
1 parent a502c2b commit d1bdd2b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/qgswebview.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ class CORE_EXPORT QgsWebView : public QTextBrowser
setSource( url );
}

QUrl url() const
{
return source();
}

QWebPage *page() const
{
return mPage;
Expand Down

0 comments on commit d1bdd2b

Please sign in to comment.