diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-11-01 22:12:34 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-11-01 22:12:34 (EDT) |
commit | 1c7b711a276df1db29c82e27fc5ab25c99dcf9b7 (patch) | |
tree | 904ed952ce456d0f6936e349fa7984263e213a81 | |
parent | 7fd87503439ff4a00ea0a46cfb7bb91d50d1cb2e (diff) | |
download | marquee-1c7b711a276df1db29c82e27fc5ab25c99dcf9b7.zip marquee-1c7b711a276df1db29c82e27fc5ab25c99dcf9b7.tar.gz marquee-1c7b711a276df1db29c82e27fc5ab25c99dcf9b7.tar.bz2 |
MqWebView: Mark some functions as pure
-rw-r--r-- | src/web-view.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web-view.h b/src/web-view.h index 1fc4091..0da60e0 100644 --- a/src/web-view.h +++ b/src/web-view.h @@ -57,13 +57,13 @@ MqWebViewScheme * mq_web_view_get_scheme(MqWebView *web_view) G_GNUC_CONST; MqConfig * -mq_web_view_get_config(MqWebView *web_view); +mq_web_view_get_config(MqWebView *web_view) G_GNUC_PURE; MqTabPage * -mq_web_view_get_tab_page(MqWebView *web_view); +mq_web_view_get_tab_page(MqWebView *web_view) G_GNUC_PURE; const gchar * -mq_web_view_get_uri(MqWebView *web_view); +mq_web_view_get_uri(MqWebView *web_view) G_GNUC_PURE; void mq_web_view_load_uri(MqWebView *web_view, const gchar *uri); |