[hackers] [surf] apply nick's patch removing unused variable and parameters || pancake
changeset: 242:5cbbab9a99ab
tag: tip
user: pancake
date: Mon Jun 11 16:45:48 2012 +0200
files: surf.c
description:
apply nick's patch removing unused variable and parameters
diff -r ac9aa239e02f -r 5cbbab9a99ab surf.c
--- a/surf.c Mon Jun 11 16:01:03 2012 +0200
+++ b/surf.c Mon Jun 11 16:45:48 2012 +0200
_AT_@ -150,7 +150,7 @@
}
void
-evalscript(WebKitWebFrame *frame, JSContextRef js, char *script, char* scriptname) {
+evalscript(JSContextRef js, char *script, char* scriptname) {
JSStringRef jsscript, jsscriptname;
JSValueRef exception = NULL;
_AT_@ -162,12 +162,12 @@
}
void
-runscript(WebKitWebFrame *frame, JSContextRef js) {
+runscript(WebKitWebFrame *frame) {
char *script;
GError *error;
if(g_file_get_contents(scriptfile, &script, NULL, &error)) {
- evalscript(frame, webkit_web_frame_get_global_context(frame), script, scriptfile);
+ evalscript(webkit_web_frame_get_global_context(frame), script, scriptfile);
}
}
_AT_@ -333,10 +333,8 @@
void
gotheaders(SoupMessage *msg, gpointer v) {
- SoupURI *uri;
GSList *l, *p;
- uri = soup_message_get_uri(msg);
for(p = l = soup_cookies_from_response(msg); p;
p = g_slist_next(p)) {
setcookie((SoupCookie *)p->data);
_AT_@ -522,7 +520,7 @@
gdk_window_add_filter(GTK_WIDGET(c->win)->window, processx, c);
webkit_web_view_set_full_content_zoom(c->view, TRUE);
frame = webkit_web_view_get_main_frame(c->view);
- runscript(frame, webkit_web_frame_get_global_context(frame));
+ runscript(frame);
settings = webkit_web_view_get_settings(c->view);
if(!(ua = getenv("SURF_USERAGENT")))
ua = useragent;
_AT_@ -784,7 +782,7 @@
void
eval(Client *c, const Arg *arg) {
WebKitWebFrame *frame = webkit_web_view_get_main_frame(c->view);
- evalscript(frame, webkit_web_frame_get_global_context(frame), ((char **)arg->v)[0], "");
+ evalscript(webkit_web_frame_get_global_context(frame), ((char **)arg->v)[0], "");
}
void
_AT_@ -827,7 +825,7 @@
void
windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObjectRef win, Client *c) {
- runscript(frame, js);
+ runscript(frame);
}
void
Received on Mon Jun 11 2012 - 16:45:53 CEST
This archive was generated by hypermail 2.3.0
: Mon Jun 11 2012 - 16:48:10 CEST