diff options
-rw-r--r-- | src/web-view.c | 6 | ||||
-rw-r--r-- | src/web-view.h | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/web-view.c b/src/web-view.c index 3405e1b..ff4cc72 100644 --- a/src/web-view.c +++ b/src/web-view.c @@ -760,6 +760,12 @@ mq_web_view_new(MqTabPage *tab_page, const gchar *uri) NULL); } +MqConfig * +mq_web_view_get_config(MqWebView *web_view) +{ + return web_view->config; +} + const gchar * mq_web_view_get_uri(MqWebView *web_view) { diff --git a/src/web-view.h b/src/web-view.h index 7a33789..76b4f2d 100644 --- a/src/web-view.h +++ b/src/web-view.h @@ -51,6 +51,9 @@ mq_web_view_get_type(void); MqWebView * mq_web_view_new(MqTabPage *tab_page, const gchar *uri); +MqConfig * +mq_web_view_get_config(MqWebView *web_view); + const gchar * mq_web_view_get_uri(MqWebView *web_view); |