summaryrefslogtreecommitdiffstats
path: root/src/tab-chrome.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab-chrome.c')
-rw-r--r--src/tab-chrome.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c
index c7306da..92acd63 100644
--- a/src/tab-chrome.c
+++ b/src/tab-chrome.c
@@ -980,9 +980,10 @@ connect_web_view(MqTabChrome *chrome)
}
void
-mq_tab_chrome_set_web_view(MqTabChrome *chrome, WebKitWebView *web_view)
+mq_tab_chrome_set_web_view(MqTabChrome *chrome, MqWebView *web_view)
{
- chrome->web_view = MQ_WEB_VIEW(web_view);
- chrome->find_controller = webkit_web_view_get_find_controller(web_view);
+ chrome->web_view = web_view;
+ chrome->find_controller = webkit_web_view_get_find_controller(
+ WEBKIT_WEB_VIEW(web_view));
connect_web_view(chrome);
}