summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--amiga/gui.c2
-rw-r--r--atari/gui.c2
-rw-r--r--beos/gui.cpp2
-rw-r--r--cocoa/gui.m2
-rw-r--r--monkey/browser.c2
-rw-r--r--riscos/gui.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 8027eeba0..bfb5d09ff 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -5141,7 +5141,7 @@ void ami_gui_splash_close(Object *win_obj)
void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}
diff --git a/atari/gui.c b/atari/gui.c
index 3b3e98943..e02c5434a 100644
--- a/atari/gui.c
+++ b/atari/gui.c
@@ -1101,7 +1101,7 @@ static void gui_init2(int argc, char** argv)
void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}
diff --git a/beos/gui.cpp b/beos/gui.cpp
index 42edc61aa..32bd3a2d5 100644
--- a/beos/gui.cpp
+++ b/beos/gui.cpp
@@ -1168,7 +1168,7 @@ bool path_add_part(char *path, int length, const char *newpart)
void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}
diff --git a/cocoa/gui.m b/cocoa/gui.m
index 7ee2372f3..449b52c82 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -327,7 +327,7 @@ void gui_401login_open(nsurl *url, const char *realm,
void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}
diff --git a/monkey/browser.c b/monkey/browser.c
index 7c28cf8a3..5cd18359a 100644
--- a/monkey/browser.c
+++ b/monkey/browser.c
@@ -393,7 +393,7 @@ gui_window_save_link(struct gui_window *g, const char *url,
void gui_file_gadget_open(struct gui_browser *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}
diff --git a/riscos/gui.c b/riscos/gui.c
index 900915483..ae5ea383e 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -2427,7 +2427,7 @@ bool path_add_part(char *path, int length, const char *newpart)
void gui_file_gadget_open(struct gui_window *g, hlcache_handle *hl,
struct form_control *gadget)
{
- LOG(("File open dialog rquest for %p/%p", bw, gadget));
+ LOG(("File open dialog rquest for %p/%p", g, gadget));
/* browser_window_set_gadget_filename(bw, gadget, "filename"); */
}