summaryrefslogtreecommitdiffstats
path: root/src/view-source.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/view-source.c')
-rw-r--r--src/view-source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view-source.c b/src/view-source.c
index 57b710d..271ad5a 100644
--- a/src/view-source.c
+++ b/src/view-source.c
@@ -97,10 +97,10 @@ mq_view_source_request(WebKitURISchemeRequest *request,
DataSignalData *data_signal_data;
path = g_strdup(webkit_uri_scheme_request_get_path(request));
- query = parse_query_string(path);
+ query = mq_parse_query_string(path);
/* TODO: Handle missing tab ID ("origin-tab=0"). */
- origin_tab_id = atoi64(g_hash_table_lookup(query, "origin-tab"));
+ origin_tab_id = mq_atoi64(g_hash_table_lookup(query, "origin-tab"));
uri = g_strdup(g_hash_table_lookup(query, "uri"));
g_hash_table_unref(query);