aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Robert Manea <gotmor@gmail.com>2009-10-26 12:13:23 +0100
committerGravatar Robert Manea <gotmor@gmail.com>2009-10-26 12:13:23 +0100
commit19f9ec181bda0b2e1743a3bb0fd4ddf16437bbe6 (patch)
tree75d166d4b38a07f911cec5a70ab20bf59d1bc8ce
parent1cd8e28e016d1cd94b27bc5a864632851a20cdf7 (diff)
removed update_gui command
-rw-r--r--README2
-rw-r--r--uzbl-core.c8
-rw-r--r--uzbl-core.h3
3 files changed, 0 insertions, 13 deletions
diff --git a/README b/README
index f4c53db..cd3e8db 100644
--- a/README
+++ b/README
@@ -159,8 +159,6 @@ The following commands are recognized:
- use for chaining multiple commands
- remember to quote the commands; one command must come as one parameter
- if you use `chain` with a handler script which must return some output (such as a cookie handler -- uzbl will wait for and use its output), use sync_spawn or sync_sh instead of spawn or sh in the command that should give the output
-* `update_gui`
- - update the contents of the status and title bars
* `event <event_name> [event_details]`
- send custom event
* menu_add <label> = <uzbl command>
diff --git a/uzbl-core.c b/uzbl-core.c
index f278a1f..3a59574 100644
--- a/uzbl-core.c
+++ b/uzbl-core.c
@@ -623,7 +623,6 @@ struct {const char *key; CommandInfo value;} cmdlist[] =
{ "print", {print, TRUE} },
{ "event", {event, TRUE} },
{ "request", {event, TRUE} },
- { "update_gui", {update_gui, TRUE} },
{ "menu_add", {menu_add, TRUE} },
{ "menu_link_add", {menu_add_link, TRUE} },
{ "menu_image_add", {menu_add_image, TRUE} },
@@ -669,13 +668,6 @@ set_var(WebKitWebView *page, GArray *argv, GString *result) {
}
void
-update_gui(WebKitWebView *page, GArray *argv, GString *result) {
- (void) page; (void) argv; (void) result;
-
- update_title();
-}
-
-void
add_to_menu(GArray *argv, guint context) {
GUI *g = &uzbl.gui;
MenuItem *m;
diff --git a/uzbl-core.h b/uzbl-core.h
index 1bab39f..51b415b 100644
--- a/uzbl-core.h
+++ b/uzbl-core.h
@@ -426,9 +426,6 @@ void
retrieve_geometry();
void
-update_gui(WebKitWebView *page, GArray *argv, GString *result);
-
-void
event(WebKitWebView *page, GArray *argv, GString *result);
void