diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:59:35 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-07-26 16:59:35 +0530 |
| commit | b0f598910f1f8bc8db6b65a0f01b1950ed7c3841 (patch) | |
| tree | 234758ed1c91238b9498fdc6dd4bcccc42bddc36 /src/widgets/WebViewStack.cpp | |
| parent | 8ab1f8d796d8f35a65e38fdd03d51824a41d1dab (diff) | |
| download | null-browser-b0f598910f1f8bc8db6b65a0f01b1950ed7c3841.tar.gz null-browser-b0f598910f1f8bc8db6b65a0f01b1950ed7c3841.zip | |
Add web.view.expose for simple lua->js interop in decorations
Diffstat (limited to 'src/widgets/WebViewStack.cpp')
| -rw-r--r-- | src/widgets/WebViewStack.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/widgets/WebViewStack.cpp b/src/widgets/WebViewStack.cpp index 698cb88..9ec8570 100644 --- a/src/widgets/WebViewStack.cpp +++ b/src/widgets/WebViewStack.cpp @@ -328,3 +328,8 @@ void WebViewStack::set_html(const QString &html, WebViewId webview_id) { webview->setHtml(html); } + +void WebViewStack::expose_rpc_function(const QString &name, const RpcFunc & /* unused */, + WebViewId /* unused */) { + qDebug() << "expose_rpc_function: NOT IMPLEMENTED" << name; +} |
