summaryrefslogtreecommitdiffstats
path: root/src/application.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-01 11:55:37 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-01 11:55:37 (EDT)
commitde3a0dd51f36026812bce8c0c770677fe39a884e (patch)
tree2c703eccbeee4029709e4ed2f1035dbc24589171 /src/application.c
parent75a2885623ccc244e602e3460d8dff47a997e022 (diff)
downloadmarquee-de3a0dd51f36026812bce8c0c770677fe39a884e.zip
marquee-de3a0dd51f36026812bce8c0c770677fe39a884e.tar.gz
marquee-de3a0dd51f36026812bce8c0c770677fe39a884e.tar.bz2
MqApplication: Rename a static function
Its purpose changed in commit 75a2885.
Diffstat (limited to 'src/application.c')
-rw-r--r--src/application.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/application.c b/src/application.c
index 8c189de..7c2725c 100644
--- a/src/application.c
+++ b/src/application.c
@@ -46,7 +46,7 @@ struct MqApplication {
};
static void
-set_webkit_settings(MqApplication *application)
+setup_web_context(MqApplication *application)
{
WebKitWebContext *web_context;
@@ -99,7 +99,7 @@ mq_application_new(const gchar *profile, gboolean G_GNUC_UNUSED private)
NULL);
#endif
- set_webkit_settings(application);
+ setup_web_context(application);
g_signal_connect(webkit_web_context_get_default(), "download-started",
G_CALLBACK(download_started_cb), application);